| Index: src/interpreter/bytecodes.h
|
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
|
| index eb0a7b03f9855575150822b82a51763fb8b100a9..c17517a9f76fd12d1b8e16df31ce00077644ee37 100644
|
| --- a/src/interpreter/bytecodes.h
|
| +++ b/src/interpreter/bytecodes.h
|
| @@ -103,6 +103,9 @@ namespace interpreter {
|
| /* Cast operators */ \
|
| V(ToBoolean, OperandType::kNone) \
|
| \
|
| + /* Closure allocation */ \
|
| + V(CreateClosure, OperandType::kImm8) \
|
| + \
|
| /* Control Flow */ \
|
| V(Jump, OperandType::kImm8) \
|
| V(JumpConstant, OperandType::kIdx8) \
|
|
|