Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Unified Diff: test/debugger/debug/debug-liveedit-replace-code.js

Issue 2636913002: [liveedit] reimplement frame restarting. (Closed)
Patch Set: rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/debugger/debug/debug-liveedit-replace-code.js
diff --git a/test/debugger/debug/debug-liveedit-replace-code.js b/test/debugger/debug/debug-liveedit-replace-code.js
new file mode 100644
index 0000000000000000000000000000000000000000..a3b83bb683804ca0240814cd3232aafbfb8ac4d8
--- /dev/null
+++ b/test/debugger/debug/debug-liveedit-replace-code.js
@@ -0,0 +1,33 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+Debug = debug.Debug
+var counter = 0;
+var exception = null;
+
+function f() {
+ if (++counter > 5) return;
+ debugger;
+ return counter;
+}
+
+function listener(event, exec_state, event_data, data) {
+ if (event != Debug.DebugEvent.Break) return;
+ try {
+ var script = Debug.findScript(f);
+ var original = 'debugger;';
+ var patch = 'debugger;\n';
+ var position = script.source.indexOf(original);
+ Debug.LiveEdit.TestApi.ApplySingleChunkPatch(
+ script, position, original.length, patch, []);
+ } catch (e) {
+ exception = e;
+ }
+}
+
+Debug.setListener(listener);
+f();
+Debug.setListener(null);
+assertNull(exception);
+assertEquals(6, counter);
« no previous file with comments | « test/debugger/debug/debug-liveedit-check-stack.js ('k') | test/debugger/debug/es6/debug-liveedit-new-target-1.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698