diff options
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); |