bugfix in the gate evaluate_value_lambda

This commit is contained in:
kr.angelov
2014-09-30 08:42:06 +00:00
parent eece5aa9be
commit 9fd8d5d019
3 changed files with 31 additions and 22 deletions

View File

@@ -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