diff options
| author | kr.angelov <kr.angelov@gmail.com> | 2014-09-30 08:42:06 +0000 |
|---|---|---|
| committer | kr.angelov <kr.angelov@gmail.com> | 2014-09-30 08:42:06 +0000 |
| commit | 70455b88a724309c2ce97634ae57c1c904808c08 (patch) | |
| tree | 684b44850964d330276304311cac344f6f8b17ef /src/runtime/c/pgf/evaluator.h | |
| parent | f70eecb63c18abad54f1e8b4ac3cb09669725e6a (diff) | |
bugfix in the gate evaluate_value_lambda
Diffstat (limited to 'src/runtime/c/pgf/evaluator.h')
| -rw-r--r-- | src/runtime/c/pgf/evaluator.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/runtime/c/pgf/evaluator.h b/src/runtime/c/pgf/evaluator.h index a6a98cdf1..0e9236abb 100644 --- a/src/runtime/c/pgf/evaluator.h +++ b/src/runtime/c/pgf/evaluator.h @@ -86,6 +86,10 @@ struct PgfEvalGates { }; PgfClosure* -pgf_evaluate_expr_thunk(PgfEvalState* state, PgfClosure* closure); +pgf_evaluate_expr_thunk(PgfEvalState* state, PgfExprThunk* thunk); + +PgfClosure* +pgf_evaluate_lambda_application(PgfEvalState* state, PgfExprThunk* lambda, + PgfClosure* arg); #endif |
