the code for def rules now uses proper graph update to preserve lazyness

This commit is contained in:
kr.angelov
2014-09-05 11:53:02 +00:00
parent 86b5f78c57
commit 4d28c7632e
7 changed files with 67 additions and 12 deletions

View File

@@ -121,11 +121,13 @@ typedef enum {
PGF_INSTR_SET_VALUE,
PGF_INSTR_SET_ARG_VAR,
PGF_INSTR_SET_FREE_VAR,
PGF_INSTR_SET_PAD,
PGF_INSTR_PUSH_VALUE,
PGF_INSTR_PUSH_ARG_VAR,
PGF_INSTR_PUSH_FREE_VAR,
PGF_INSTR_TAIL_CALL,
PGF_INSTR_FAIL,
PGF_INSTR_UPDATE,
PGF_INSTR_RET
} PgfInstruction;