mirror of
https://github.com/NixOS/nix.git
synced 2025-11-12 13:36:02 +01:00
* Verify that all variables in a Nix expression are defined.
This commit is contained in:
parent
1c9c0a5a46
commit
c4f7ae4aa5
4 changed files with 92 additions and 21 deletions
|
|
@ -81,6 +81,22 @@ static Expr parse(const char * text, const string & location,
|
|||
|
||||
if (res) throw Error(data.error);
|
||||
|
||||
ATermMap primOps;
|
||||
primOps.set("import", (ATerm) ATempty);
|
||||
primOps.set("derivation", (ATerm) ATempty);
|
||||
primOps.set("true", (ATerm) ATempty);
|
||||
primOps.set("false", (ATerm) ATempty);
|
||||
primOps.set("null", (ATerm) ATempty);
|
||||
primOps.set("isNull", (ATerm) ATempty);
|
||||
primOps.set("toString", (ATerm) ATempty);
|
||||
primOps.set("baseNameOf", (ATerm) ATempty);
|
||||
|
||||
try {
|
||||
checkVarDefs(primOps, data.result);
|
||||
} catch (Error & e) {
|
||||
throw Error(format("%1%, in %2%") % e.msg() % location);
|
||||
}
|
||||
|
||||
return data.result;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue