2012-07-18 18:59:03 +00:00
|
|
|
#pragma once
|
2006-07-26 15:05:15 +00:00
|
|
|
|
2010-10-04 17:55:38 +00:00
|
|
|
#include "eval.hh"
|
|
|
|
|
2006-07-26 15:05:15 +00:00
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
namespace nix {
|
|
|
|
|
2019-04-08 12:20:58 +00:00
|
|
|
MakeError(AttrPathNotFound, Error);
|
2020-02-07 13:22:01 +00:00
|
|
|
MakeError(NoPositionInfo, Error);
|
2019-04-08 12:20:58 +00:00
|
|
|
|
2020-02-07 13:08:24 +00:00
|
|
|
std::pair<Value *, Pos> findAlongAttrPath(EvalState & state, const string & attrPath,
|
2013-09-03 13:17:51 +00:00
|
|
|
Bindings & autoArgs, Value & vIn);
|
2006-07-26 15:05:15 +00:00
|
|
|
|
2019-10-28 20:22:38 +00:00
|
|
|
/* Heuristic to find the filename and lineno or a nix value. */
|
|
|
|
Pos findDerivationFilename(EvalState & state, Value & v, std::string what);
|
2019-10-23 15:21:10 +00:00
|
|
|
|
2020-06-18 11:44:40 +00:00
|
|
|
std::vector<Symbol> parseAttrPath(EvalState & state, std::string_view s);
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
}
|