| Index: src/interpreter/bytecodes.h
|
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
|
| index 263e0ce490de93da55ed8299b32cf19c918d8706..c2203949503e31318470522e44c9c96824110d73 100644
|
| --- a/src/interpreter/bytecodes.h
|
| +++ b/src/interpreter/bytecodes.h
|
| @@ -125,6 +125,10 @@ namespace interpreter {
|
| /* Closure allocation */ \
|
| V(CreateClosure, OperandType::kImm8) \
|
| \
|
| + /* Arguments allocation */ \
|
| + V(CreateMappedArguments, OperandType::kNone) \
|
| + V(CreateUnmappedArguments, OperandType::kNone) \
|
| + \
|
| /* Control Flow */ \
|
| V(Jump, OperandType::kImm8) \
|
| V(JumpConstant, OperandType::kIdx8) \
|
|
|