diff options
Diffstat (limited to 'deps/v8/src/liveedit.h')
-rw-r--r-- | deps/v8/src/liveedit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/liveedit.h b/deps/v8/src/liveedit.h index 4ee4466126..424c24e351 100644 --- a/deps/v8/src/liveedit.h +++ b/deps/v8/src/liveedit.h @@ -69,7 +69,7 @@ class LiveEditFunctionTracker { explicit LiveEditFunctionTracker(Isolate* isolate, FunctionLiteral* fun); ~LiveEditFunctionTracker(); void RecordFunctionInfo(Handle<SharedFunctionInfo> info, - FunctionLiteral* lit); + FunctionLiteral* lit, Zone* zone); void RecordRootFunctionInfo(Handle<Code> code); static bool IsActive(Isolate* isolate); @@ -121,7 +121,7 @@ class LiveEdit : AllStatic { // has restart the lowest found frames and drops all other frames above // if possible and if do_drop is true. static Handle<JSArray> CheckAndDropActivations( - Handle<JSArray> shared_info_array, bool do_drop); + Handle<JSArray> shared_info_array, bool do_drop, Zone* zone); // A copy of this is in liveedit-debugger.js. enum FunctionPatchabilityStatus { |