Index: src/frames.h |
diff --git a/src/frames.h b/src/frames.h |
index 6b51fb868cd68fa3bf226d7c695a2cc152cf2535..16ebba5f61fdbfec0a79a5c1b9755d40c3978ed3 100644 |
--- a/src/frames.h |
+++ b/src/frames.h |
@@ -640,15 +640,11 @@ |
friend class StackFrameIteratorBase; |
}; |
-class JavaScriptFrame; |
- |
class FrameSummary BASE_EMBEDDED { |
public: |
FrameSummary(Object* receiver, JSFunction* function, |
AbstractCode* abstract_code, int code_offset, |
bool is_constructor); |
- |
- static FrameSummary GetFirst(JavaScriptFrame* frame); |
Handle<Object> receiver() { return receiver_; } |
Handle<JSFunction> function() { return function_; } |
@@ -732,6 +728,7 @@ |
friend class StackFrame; |
friend class SafeStackFrameIterator; |
}; |
+ |
class JavaScriptFrame : public StandardFrame { |
public: |
@@ -900,11 +897,11 @@ |
void PatchBytecodeOffset(int new_offset); |
// Returns the frame's current bytecode array. |
- BytecodeArray* GetBytecodeArray() const; |
+ Object* GetBytecodeArray() const; |
// Updates the frame's BytecodeArray with |bytecode_array|. Used by the |
// debugger to swap execution onto a BytecodeArray patched with breakpoints. |
- void PatchBytecodeArray(BytecodeArray* bytecode_array); |
+ void PatchBytecodeArray(Object* bytecode_array); |
// Access to the interpreter register file for this frame. |
Object* GetInterpreterRegister(int register_index) const; |