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 4810f38..1748adc 100644
--- a/clox/src/chunk.h
+++ b/clox/src/chunk.h
@@ -19,6 +19,7 @@ typedef enum {
OP_SET_UPVALUE,
OP_GET_PROPERTY,
OP_SET_PROPERTY,
+ OP_GET_SUPER,
OP_EQUAL,
OP_GREATER,
OP_LESS,
@@ -34,6 +35,7 @@ typedef enum {
OP_LOOP,
OP_CALL,
OP_INVOKE,
+ OP_SUPER_INVOKE,
OP_CLOSURE,
OP_CLOSE_UPVALUE,
OP_RETURN,