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

Unified Diff: test/inspector/debugger/async-instrumentation.js

Issue 2650803003: [inspector] change target promise for kDebugWillHandle & kDebugDidHandle (Closed)
Patch Set: added missing guard in asyncTaskCreated 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/inspector/debugger/async-instrumentation.js
diff --git a/test/inspector/debugger/async-instrumentation.js b/test/inspector/debugger/async-instrumentation.js
index b61e28a2c48c8bbb692d44f9a965e45fe9f4bae6..777dec3a9c646ef3795792916f8be9fda7e8e407 100644
--- a/test/inspector/debugger/async-instrumentation.js
+++ b/test/inspector/debugger/async-instrumentation.js
@@ -13,10 +13,10 @@ function foo() {
}
function test() {
+ debugger;
var resolve1;
var p1 = new Promise(resolve => resolve1 = resolve);
var p2 = p1.then(foo);
- debugger;
resolve1(); // asyncTaskScheduled
debugger;
return p2;

Powered by Google App Engine
This is Rietveld 408576698