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

Unified Diff: test/debugger/debug/es6/debug-stepin-microtasks.js

Issue 2758483002: [debugger] tuned StepNext and StepOut at return position (Closed)
Patch Set: addressed comments Created 3 years, 9 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/es6/debug-stepin-microtasks.js
diff --git a/test/debugger/debug/es6/debug-stepin-microtasks.js b/test/debugger/debug/es6/debug-stepin-microtasks.js
index dd3f7a1c9ef34d5910ebcba3f0e6be1d2a710136..f4a8c1a45948656e99ffd52fcab2636a30c3ccd4 100644
--- a/test/debugger/debug/es6/debug-stepin-microtasks.js
+++ b/test/debugger/debug/es6/debug-stepin-microtasks.js
@@ -6,7 +6,7 @@
Debug = debug.Debug
var exception = null;
var break_count = 0;
-const expected_breaks = 9;
+const expected_breaks = 10;
function listener(event, exec_state, event_data, data) {
try {
@@ -65,7 +65,7 @@ function promise4() {
function finalize() {
Promise.resolve().then(function() {
- if (expected_breaks !== break_count) {
+ if (expected_breaks !== break_count) { // Break 9. StepOut.
%AbortJS("FAIL: expected <" + expected_breaks + "> breaks instead of <" +
break_count + ">");
}

Powered by Google App Engine
This is Rietveld 408576698