tvl-depot/third_party/nix/src/libexpr/attr-path.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
213 B
C++
Raw Normal View History

#pragma once
#include <map>
#include <string>
#include "eval.hh"
namespace nix {
Value* findAlongAttrPath(EvalState& state, const string& attrPath,
Bindings& autoArgs, Value& vIn);
}