nix-super/src/libexpr/attr-path.hh
2019-04-08 14:20:58 +02:00

16 lines
234 B
C++

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