| Index: test/mjsunit/debug-liveedit-check-stack.js
|
| diff --git a/test/mjsunit/debug-liveedit-check-stack.js b/test/mjsunit/debug-liveedit-check-stack.js
|
| index 6b16490d7121b58aae524443475aeac9f7ce6c14..1b00ad37b6a096d6acc9a5a6c93db3d0a4a0d58a 100644
|
| --- a/test/mjsunit/debug-liveedit-check-stack.js
|
| +++ b/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;
|
|
|