aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/chunk.h
diff options
context:
space:
mode:
Diffstat (limited to 'clox/src/chunk.h')
-rw-r--r--clox/src/chunk.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/clox/src/chunk.h b/clox/src/chunk.h
index 7777ad6..db524cf 100644
--- a/clox/src/chunk.h
+++ b/clox/src/chunk.h
@@ -25,6 +25,8 @@ typedef enum {
OP_NOT,
OP_NEGATE,
OP_PRINT,
+ OP_JUMP,
+ OP_JUMP_IF_FALSE,
OP_RETURN,
} OpCode;