Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 167639656216d89e1aa082d7889861dbd9832d9b..fb4a5575cabead49e674f361511bcd04f4e3a033 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -117,8 +117,12 @@ namespace interpreter { |
V(JumpConstant, OperandType::kIdx8) \ |
V(JumpIfTrue, OperandType::kImm8) \ |
V(JumpIfTrueConstant, OperandType::kIdx8) \ |
+ V(JumpIfToBooleanTrue, OperandType::kImm8) \ |
+ V(JumpIfToBooleanTrueConstant, OperandType::kIdx8) \ |
V(JumpIfFalse, OperandType::kImm8) \ |
V(JumpIfFalseConstant, OperandType::kIdx8) \ |
+ V(JumpIfToBooleanFalse, OperandType::kImm8) \ |
+ V(JumpIfToBooleanFalseConstant, OperandType::kIdx8) \ |
V(Return, OperandType::kNone) |