diff options
| author | mryouse | 2023-05-26 21:04:49 +0000 |
|---|---|---|
| committer | mryouse | 2023-05-26 21:04:49 +0000 |
| commit | a043f552ddca8d890b14bcddf555472ef69e9014 (patch) | |
| tree | e4dbc495867791aff6c5d9129a717f6a0f55578d /dbg.d | |
| parent | b57c1630da58d55dbb7855d9de76f776600038ea (diff) | |
bytecode compilation of map()
Diffstat (limited to 'dbg.d')
| -rw-r--r-- | dbg.d | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -205,6 +205,8 @@ int disassemble(Chunk chunk, int offset) { return simpleInstruction("OP_NIL", offset); case OpCode.OP_JUMP: return jumpInstruction("OP_JUMP", 1, chunk, offset); + case OpCode.OP_JUMP_TO: + return jumpInstruction("OP_JUMP_TO", -1, chunk, offset); case OpCode.OP_JUMP_IF_FALSE: return jumpInstruction("OP_JUMP_IF_FALSE", 1, chunk, offset); case OpCode.OP_JUMP_IF_TRUE: |
