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

Side by Side 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, 10 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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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 print('Checks async instrumentation enabled in the middle.'); 5 print('Checks async instrumentation enabled in the middle.');
6 6
7 InspectorTest.addScript(` 7 InspectorTest.addScript(`
8 function foo() { 8 function foo() {
9 // asyncTaskStarted 9 // asyncTaskStarted
10 debugger; 10 debugger;
11 // asyncTaskFinished 11 // asyncTaskFinished
12 debugger; 12 debugger;
13 } 13 }
14 14
15 function test() { 15 function test() {
16 debugger;
16 var resolve1; 17 var resolve1;
17 var p1 = new Promise(resolve => resolve1 = resolve); 18 var p1 = new Promise(resolve => resolve1 = resolve);
18 var p2 = p1.then(foo); 19 var p2 = p1.then(foo);
19 debugger;
20 resolve1(); // asyncTaskScheduled 20 resolve1(); // asyncTaskScheduled
21 debugger; 21 debugger;
22 return p2; 22 return p2;
23 } 23 }
24 24
25 //# sourceURL=test.js`, 7, 26); 25 //# sourceURL=test.js`, 7, 26);
26 26
27 InspectorTest.setupScriptMap(); 27 InspectorTest.setupScriptMap();
28 Protocol.Debugger.onPaused(message => { 28 Protocol.Debugger.onPaused(message => {
29 if (enableOnPause-- === 0) 29 if (enableOnPause-- === 0)
(...skipping 29 matching lines...) Expand all
59 }, 59 },
60 60
61 function afterAsyncTaskStarted(next) { 61 function afterAsyncTaskStarted(next) {
62 enableOnPause = 3; 62 enableOnPause = 3;
63 Protocol.Runtime.evaluate({ expression: 'test()//# sourceURL=expr1.js', 63 Protocol.Runtime.evaluate({ expression: 'test()//# sourceURL=expr1.js',
64 awaitPromise: true }) 64 awaitPromise: true })
65 .then(() => Protocol.Debugger.setAsyncCallStackDepth({ maxDepth: 0 })) 65 .then(() => Protocol.Debugger.setAsyncCallStackDepth({ maxDepth: 0 }))
66 .then(next); 66 .then(next);
67 } 67 }
68 ]); 68 ]);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698