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 be3c1cb..fe585de 100644
--- a/clox/src/chunk.h
+++ b/clox/src/chunk.h
@@ -15,6 +15,8 @@ typedef enum {
OP_GET_GLOBAL,
OP_DEFINE_GLOBAL,
OP_SET_GLOBAL,
+ OP_GET_UPVALUE,
+ OP_SET_UPVALUE,
OP_EQUAL,
OP_GREATER,
OP_LESS,