Plumbing for index and dot notations is working

This commit is contained in:
2022-09-05 17:43:42 +01:00
parent 82c03ecb33
commit 304e1a5fb0
14 changed files with 708 additions and 29 deletions

View File

@@ -48,6 +48,13 @@ typedef enum Opcode {
OP_IMPORT,
OP_EXPORT,
//for indexing
OP_INDEX,
OP_DOT,
OP_INDEX_ASSIGN,
OP_DOT_ASSIGN,
//comparion of values
OP_COMPARE_EQUAL,
OP_COMPARE_NOT_EQUAL,