diff options
| author | Ben Winston | 2023-05-21 16:20:41 -0400 |
|---|---|---|
| committer | Ben Winston | 2023-05-21 16:20:41 -0400 |
| commit | 618de4c70d8916f64781997f3ae538e3e6109d00 (patch) | |
| tree | bcd8ee70d82402407399a49c9cf6914858bd9449 /chunk.d | |
| parent | b1183af95f45ba0162a91f7a308a4846418f03be (diff) | |
if/else, 'and' control flow
Diffstat (limited to 'chunk.d')
| -rw-r--r-- | chunk.d | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -48,6 +48,9 @@ enum OpCode { OP_POP_SCOPE, OP_SUBTRACT, OP_NIL, + + OP_JUMP, + OP_JUMP_IF_FALSE, } class Chunk { |
