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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/clox/src/chunk.h b/clox/src/chunk.h
index e992c04..ae0ab72 100644
--- a/clox/src/chunk.h
+++ b/clox/src/chunk.h
@@ -34,6 +34,7 @@ typedef enum {
OP_CLOSURE,
OP_CLOSE_UPVALUE,
OP_RETURN,
+ OP_CLASS,
} OpCode;
typedef struct {