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

Unified Diff: test/inspector/debugger/async-stack-await.js

Issue 2578923002: [inspector] async stacks for Promise.then calls... (Closed)
Patch Set: avoid calling functions 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-stack-await.js
diff --git a/test/inspector/debugger/async-stack-await.js b/test/inspector/debugger/async-stack-await.js
new file mode 100644
index 0000000000000000000000000000000000000000..a7eb741904b0015378eccb6d173f8bfbef36f4bc
--- /dev/null
+++ b/test/inspector/debugger/async-stack-await.js
@@ -0,0 +1,46 @@
+// Copyright 2016 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.
+
+print('Checks that async stacks works for async/await');
+
+InspectorTest.addScript(`
+async function foo1() {
+ debugger;
+ return Promise.resolve();
+}
+
+async function foo2() {
+ await Promise.resolve();
+ debugger;
+ await Promise.resolve();
+ debugger;
+ await foo1();
+ await Promise.all([ Promise.resolve() ]).then(foo1);
+ debugger;
+}
+
+async function test() {
+ await foo2();
+}
+//# sourceURL=test.js`, 7, 26);
+
+InspectorTest.setupScriptMap();
+Protocol.Debugger.onPaused(message => {
+ InspectorTest.logCallFrames(message.params.callFrames);
+ var asyncStackTrace = message.params.asyncStackTrace;
+ while (asyncStackTrace) {
+ InspectorTest.log(`-- ${asyncStackTrace.description} --`);
+ InspectorTest.logCallFrames(asyncStackTrace.callFrames);
+ asyncStackTrace = asyncStackTrace.parent;
+ }
+ InspectorTest.log('');
+ Protocol.Debugger.resume();
+});
+
+Protocol.Debugger.enable();
+Protocol.Debugger.setAsyncCallStackDepth({ maxDepth: 128 });
+Protocol.Runtime.evaluate({ expression: 'test()//# sourceURL=expr.js',
+ awaitPromise: true })
+ .then(InspectorTest.logMessage)
+ .then(InspectorTest.completeTest);
« no previous file with comments | « test/inspector/debugger/async-promise-late-then-expected.txt ('k') | test/inspector/debugger/async-stack-await-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698