diff options
Diffstat (limited to 'deps/v8/test/mjsunit/debug-liveedit-check-stack.js')
-rw-r--r-- | deps/v8/test/mjsunit/debug-liveedit-check-stack.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/debug-liveedit-check-stack.js b/deps/v8/test/mjsunit/debug-liveedit-check-stack.js index 6b16490d71..1b00ad37b6 100644 --- a/deps/v8/test/mjsunit/debug-liveedit-check-stack.js +++ b/deps/v8/test/mjsunit/debug-liveedit-check-stack.js @@ -60,7 +60,7 @@ function TestBase(name) { // Runs in debugger context. var change_log = new Array(); try { - Debug.LiveEditChangeScript(script, patch_pos, orig_animal.length, new_animal_patch, change_log); + Debug.LiveEdit.ApplyPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log); } finally { print("Change log: " + JSON.stringify(change_log) + "\n"); } @@ -76,7 +76,7 @@ function WrapInCatcher(f, holder) { try { f(); } catch (e) { - if (e instanceof Debug.LiveEditChangeScript.Failure) { + if (e instanceof Debug.LiveEdit.Failure) { holder[0] = e; } else { throw e; |