aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/chunk.h
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-08-13 00:04:31 -0700
committerGravatar Tom Willemse2022-08-13 00:04:31 -0700
commit4e77cfa61262a03055aeb273108fd9a49e8dfa4f (patch)
tree9c736eb135e8bd1143e0e4289e87edd2324586c9 /clox/src/chunk.h
parentf4185577e56a893b9375bc94d71bef5f9eb51891 (diff)
downloadcrafting-interpreters-4e77cfa61262a03055aeb273108fd9a49e8dfa4f.tar.gz
crafting-interpreters-4e77cfa61262a03055aeb273108fd9a49e8dfa4f.zip
Chapter 27.4
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 ae0ab72..9fff535 100644
--- a/clox/src/chunk.h
+++ b/clox/src/chunk.h
@@ -17,6 +17,8 @@ typedef enum {
OP_SET_GLOBAL,
OP_GET_UPVALUE,
OP_SET_UPVALUE,
+ OP_GET_PROPERTY,
+ OP_SET_PROPERTY,
OP_EQUAL,
OP_GREATER,
OP_LESS,