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
226 B
C++
Raw Normal View History

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