1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 00:11:17 +02:00

* Start of an evaluator that uses call-by-need (with thunk updating)

instead of (memoised) call-by-name.
This commit is contained in:
Eelco Dolstra 2010-03-23 17:30:50 +00:00
parent 90039e0863
commit 0910ae9568
3 changed files with 200 additions and 1 deletions

View file

@ -8,7 +8,7 @@ namespace nix {
/* Parse a Nix expression from the specified file. If `path' refers
to a directory, the "/default.nix" is appended. */
to a directory, then "/default.nix" is appended. */
Expr parseExprFromFile(EvalState & state, Path path);
/* Parse a Nix expression from the specified string. */