Index: src/liveedit.h |
=================================================================== |
--- src/liveedit.h (revision 7267) |
+++ src/liveedit.h (working copy) |
@@ -65,13 +65,18 @@ |
// also collects compiled function codes. |
class LiveEditFunctionTracker { |
public: |
- explicit LiveEditFunctionTracker(FunctionLiteral* fun); |
+ explicit LiveEditFunctionTracker(Isolate* isolate, FunctionLiteral* fun); |
~LiveEditFunctionTracker(); |
void RecordFunctionInfo(Handle<SharedFunctionInfo> info, |
FunctionLiteral* lit); |
void RecordRootFunctionInfo(Handle<Code> code); |
- static bool IsActive(); |
+ static bool IsActive(Isolate* isolate); |
+ |
+ private: |
+#ifdef ENABLE_DEBUGGER_SUPPORT |
+ Isolate* isolate_; |
+#endif |
}; |
#ifdef ENABLE_DEBUGGER_SUPPORT |