diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-08-24T13·39+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-08-24T13·39+0000 |
commit | 943ab38a0d0969004de231a6b3e89df88ffc6ccf (patch) | |
tree | 10852ca08d48ce59858ebc64702f1de8b7b51629 /src/libexpr/eval.hh | |
parent | f41297fdcecaa1ba12d238d1754457d319426579 (diff) |
* Refactoring: move strictEval to libexpr.
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index ff050b398680..58e6b40d7780 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -47,6 +47,10 @@ Expr evalExpr(EvalState & state, Expr e); /* Evaluate an expression read from the given file to normal form. */ Expr evalFile(EvalState & state, const Path & path); +/* Evaluate an expression, and recursively evaluate list elements and + attributes. */ +Expr strictEvalExpr(EvalState & state, Expr e); + /* Specific results. */ string evalString(EvalState & state, Expr e); Path evalPath(EvalState & state, Expr e); |