Index: src/frames.h |
diff --git a/src/frames.h b/src/frames.h |
index 16ebba5f61fdbfec0a79a5c1b9755d40c3978ed3..2a1a3c4fdd11e36c3b27096958723209cbb20a50 100644 |
--- a/src/frames.h |
+++ b/src/frames.h |
@@ -904,7 +904,8 @@ class InterpretedFrame : public JavaScriptFrame { |
void PatchBytecodeArray(Object* bytecode_array); |
// Access to the interpreter register file for this frame. |
- Object* GetInterpreterRegister(int register_index) const; |
+ Object* ReadInterpreterRegister(int register_index) const; |
+ void WriteInterpreterRegister(int register_index, Object* value); |
// Build a list with summaries for this frame including all inlined frames. |
void Summarize(List<FrameSummary>* frames) const override; |