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

Side by Side Diff: test/inspector/debugger/async-stack-created-frame.js

Issue 2868423004: Revert of [inspector] use creation stack trace as parent for async call chains (Closed)
Patch Set: Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 the V8 project authors. All rights reserved. 1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // TODO(kozyatinskiy): fix this test.
6 InspectorTest.log('Checks created frame for async call chain'); 5 InspectorTest.log('Checks created frame for async call chain');
7 6
8 InspectorTest.addScript( 7 InspectorTest.addScript(
9 ` 8 `
10 function foo1() { 9 function foo1() {
11 debugger; 10 debugger;
12 } 11 }
13 12
14 function foo2() { 13 function foo2() {
15 debugger; 14 debugger;
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 169
171 function testSetTimeouts(next) { 170 function testSetTimeouts(next) {
172 Protocol.Runtime 171 Protocol.Runtime
173 .evaluate({ 172 .evaluate({
174 expression: 'setTimeouts()//# sourceURL=expr.js', 173 expression: 'setTimeouts()//# sourceURL=expr.js',
175 awaitPromise: true 174 awaitPromise: true
176 }) 175 })
177 .then(next); 176 .then(next);
178 } 177 }
179 ]); 178 ]);
OLDNEW
« no previous file with comments | « test/inspector/debugger/async-stack-await-expected.txt ('k') | test/inspector/debugger/async-stack-created-frame-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698