| Index: src/interpreter/bytecodes.h
|
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
|
| index 76aab4246337bd0cd210d285def31d071bff51e6..9806c6c92320c77e5b12ba3b83a308af88078e2c 100644
|
| --- a/src/interpreter/bytecodes.h
|
| +++ b/src/interpreter/bytecodes.h
|
| @@ -86,6 +86,8 @@ namespace interpreter {
|
| V(ShiftRightLogical, OperandType::kReg8) \
|
| \
|
| /* Unary Operators */ \
|
| + V(Inc, OperandType::kNone) \
|
| + V(Dec, OperandType::kNone) \
|
| V(LogicalNot, OperandType::kNone) \
|
| V(TypeOf, OperandType::kNone) \
|
| \
|
| @@ -112,6 +114,7 @@ namespace interpreter {
|
| /* Cast operators */ \
|
| V(ToBoolean, OperandType::kNone) \
|
| V(ToName, OperandType::kNone) \
|
| + V(ToNumber, OperandType::kNone) \
|
| \
|
| /* Literals */ \
|
| V(CreateArrayLiteral, OperandType::kIdx8, OperandType::kImm8) \
|
|
|