Some more opcode refactoring. (0.3.1)
This commit is contained in:
parent
f0f93689c3
commit
228615db18
12 changed files with 42 additions and 59 deletions
|
|
@ -86,11 +86,11 @@ static const char *opcode_name(OpCode op) {
|
|||
case OP_INDEX_GET: return "INDEX_GET";
|
||||
case OP_INDEX_SET: return "INDEX_SET";
|
||||
case OP_LEN: return "LEN";
|
||||
case OP_ARR_PUSH: return "ARR_PUSH";
|
||||
case OP_ARR_POP: return "ARR_POP";
|
||||
case OP_ARR_SET: return "ARR_SET";
|
||||
case OP_ARR_INSERT: return "ARR_INSERT";
|
||||
case OP_ARR_REMOVE: return "ARR_REMOVE";
|
||||
case OP_PUSH: return "ARR_PUSH";
|
||||
case OP_APOP: return "ARR_POP";
|
||||
case OP_SET: return "ARR_SET";
|
||||
case OP_INSERT: return "ARR_INSERT";
|
||||
case OP_REMOVE: return "ARR_REMOVE";
|
||||
case OP_SLICE: return "SLICE";
|
||||
case OP_TO_NUMBER: return "TO_NUMBER";
|
||||
case OP_TO_STRING: return "TO_STRING";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue