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

Side by Side Diff: test/inspector/debugger/step-out-async-await-expected.txt

Issue 2779143002: [inspector] added test for StepOut at return postion from async function (Closed)
Patch Set: better expectation Created 3 years, 8 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
« no previous file with comments | « test/inspector/debugger/step-out-async-await.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 StepOut from return position of async function.
2
3 Running test: testStepInto
4 p.then(() => 1);
5 #debugger;
6 return p;
7
8 debugger;
9 #return p;
10 }
11
12 return p;
13 #}
14 await foo();
15
16 await p;
17 p.then(() => #1);
18 debugger;
19
20
21 Running test: testStepOver
22 p.then(() => 1);
23 #debugger;
24 return p;
25
26 debugger;
27 #return p;
28 }
29
30 return p;
31 #}
32 await foo();
33
34 await p;
35 p.then(() => #1);
36 debugger;
37
38 await p;
39 p.then(() => 1#);
40 debugger;
41
42 await foo();
43 #}
44
45
46
47 Running test: testStepOut
48 p.then(() => 1);
49 #debugger;
50 return p;
51
52 debugger;
53 #return p;
54 }
55
56 return p;
57 #}
58 await foo();
59
60 await p;
61 p.then(() => #1);
62 debugger;
63
64 await foo();
65 #}
66
67
OLDNEW
« no previous file with comments | « test/inspector/debugger/step-out-async-await.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698