1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

* Working evaluator.

* Mutually recursive attribute sets.
* Print evaluator efficiency statistics.
This commit is contained in:
Eelco Dolstra 2003-10-31 17:09:31 +00:00
parent f1c1a3c97f
commit 9210d4d530
10 changed files with 540 additions and 309 deletions

View file

@ -40,7 +40,7 @@ struct Cleanup : TermFun
string path(s);
if (path[0] != '/')
path = basePath + "/" + path;
return ATmake("Str(<str>)", canonPath(path).c_str());
return ATmake("Path(<str>)", canonPath(path).c_str());
}
if (ATmatch(e, "Int(<str>)", &s)) {