Index: src/interpreter/bytecode-array-iterator.h |
diff --git a/src/interpreter/bytecode-array-iterator.h b/src/interpreter/bytecode-array-iterator.h |
index 0d9011f242eef9c85aea247eafd280d68e83743b..e7b0d5e0c23338d4dd546a5e1afd6eecb8d33ee7 100644 |
--- a/src/interpreter/bytecode-array-iterator.h |
+++ b/src/interpreter/bytecode-array-iterator.h |
@@ -27,12 +27,13 @@ class BytecodeArrayIterator { |
int8_t GetSmi8Operand(int operand_index) const; |
int GetIndexOperand(int operand_index) const; |
+ int GetWideIndexOperand(int operand_index) const; |
Register GetRegisterOperand(int operand_index) const; |
Handle<Object> GetConstantForIndexOperand(int operand_index) const; |
// Get the raw byte for the given operand. Note: you should prefer using the |
// typed versions above which cast the return to an appropriate type. |
- uint8_t GetRawOperand(int operand_index, OperandType operand_type) const; |
+ uint32_t GetRawOperand(int operand_index, OperandType operand_type) const; |
private: |
Handle<BytecodeArray> bytecode_array_; |