Index: src/debug/liveedit.h |
diff --git a/src/debug/liveedit.h b/src/debug/liveedit.h |
index a59046efb36b12938982ad44f273c2ae68e4fad7..bc06baff8060f75d51495c4ec121b2a91e12a4d7 100644 |
--- a/src/debug/liveedit.h |
+++ b/src/debug/liveedit.h |
@@ -117,7 +117,8 @@ 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> old_shared_array, Handle<JSArray> new_shared_array, |
+ bool do_drop); |
// Restarts the call frame and completely drops all frames above it. |
// Return error message or NULL. |
@@ -131,7 +132,8 @@ class LiveEdit : AllStatic { |
FUNCTION_BLOCKED_UNDER_NATIVE_CODE = 4, |
FUNCTION_REPLACED_ON_ACTIVE_STACK = 5, |
FUNCTION_BLOCKED_UNDER_GENERATOR = 6, |
- FUNCTION_BLOCKED_ACTIVE_GENERATOR = 7 |
+ FUNCTION_BLOCKED_ACTIVE_GENERATOR = 7, |
+ FUNCTION_BLOCKED_NO_NEW_TARGET_ON_RESTART = 8 |
}; |
// Compares 2 strings line-by-line, then token-wise and returns diff in form |