diff options
| author | mryouse | 2023-06-01 20:17:37 -0400 |
|---|---|---|
| committer | mryouse | 2023-06-01 20:17:37 -0400 |
| commit | af07e3fba55ef98aabd54057c6e3433734b81111 (patch) | |
| tree | 87c7bb5e83c9beeed488dd1bdb9254eb450ffdec /dbg.d | |
| parent | d034b5d68b4addfa0a305746f9804d6db5cce988 (diff) | |
split concat/append into 2 ops
Diffstat (limited to 'dbg.d')
| -rw-r--r-- | dbg.d | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -225,6 +225,10 @@ int disassemble(Chunk chunk, int offset) { return simpleInstruction("OP_FIRST", offset); case OpCode.OP_REST: return simpleInstruction("OP_REST", offset); + case OpCode.OP_CONCAT: + return simpleInstruction("OP_CONCAT", offset); + case OpCode.OP_APPEND: + return simpleInstruction("OP_APPEND", offset); default: writeln("unknown opcode?"); return offset + 1; |
