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 2807d30..7777ad6 100644
--- a/clox/src/chunk.h
+++ b/clox/src/chunk.h
@@ -10,6 +10,8 @@ typedef enum {
OP_TRUE,
OP_FALSE,
OP_POP,
+ OP_GET_LOCAL,
+ OP_SET_LOCAL,
OP_GET_GLOBAL,
OP_DEFINE_GLOBAL,
OP_SET_GLOBAL,