Index: src/debug/debug-evaluate.h |
diff --git a/src/debug/debug-evaluate.h b/src/debug/debug-evaluate.h |
index 49a7fce3ee739b6bf98452bdbe5a5942965346c9..d3995d90accdc264f010badab1136e50abeeec58 100644 |
--- a/src/debug/debug-evaluate.h |
+++ b/src/debug/debug-evaluate.h |
@@ -15,7 +15,7 @@ class DebugEvaluate : public AllStatic { |
public: |
static MaybeHandle<Object> Global(Isolate* isolate, Handle<String> source, |
bool disable_break, |
- Handle<Object> context_extension); |
+ Handle<HeapObject> context_extension); |
// Evaluate a piece of JavaScript in the context of a stack frame for |
// debugging. Things that need special attention are: |
@@ -25,7 +25,7 @@ class DebugEvaluate : public AllStatic { |
static MaybeHandle<Object> Local(Isolate* isolate, StackFrame::Id frame_id, |
int inlined_jsframe_index, |
Handle<String> source, bool disable_break, |
- Handle<Object> context_extension); |
+ Handle<HeapObject> context_extension); |
private: |
// This class builds a context chain for evaluation of expressions |
@@ -88,7 +88,7 @@ class DebugEvaluate : public AllStatic { |
static MaybeHandle<Object> Evaluate(Isolate* isolate, |
Handle<SharedFunctionInfo> outer_info, |
Handle<Context> context, |
- Handle<Object> context_extension, |
+ Handle<HeapObject> context_extension, |
Handle<Object> receiver, |
Handle<String> source); |
}; |