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

Side by Side Diff: test/inspector/debugger/async-stacks-limit-expected.txt

Issue 2648873002: [inspector] added creation frame for async call chains for promises (Closed)
Patch Set: merge async call chains onle when they have the same description 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 unified diff | Download patch
OLDNEW
1 Checks that async stacks works good with different limits 1 Checks that async stacks works good with different limits
2 2
3 Running test: testZeroLimit 3 Running test: testZeroLimit
4 foo1 (test.js:11:2) 4 foo1 (test.js:11:2)
5 5
6 6
7 Running test: testOneLimit 7 Running test: testOneLimit
8 foo1 (test.js:11:2) 8 foo1 (test.js:11:2)
9 -- Promise.resolve --
10 promise (test.js:23:2)
11 (anonymous) (expr.js:0:0)
12 9
13 10
14 Running test: testOneLimitTwoPromises 11 Running test: testOneLimitTwoPromises
15 foo1 (test.js:11:2) 12 foo1 (test.js:11:2)
16 13
17 foo2 (test.js:15:2) 14 foo2 (test.js:15:2)
18 15
19 16
20 Running test: testTwoLimitTwoPromises 17 Running test: testTwoLimitTwoPromises
21 foo1 (test.js:11:2) 18 foo1 (test.js:11:2)
22 -- Promise.resolve --
dgozman 2017/01/24 23:57:44 Can we adjust constants in this test for it to be
kozy 2017/01/25 00:45:43 Done.
23 twoPromises (test.js:34:2)
24 (anonymous) (expr.js:0:0)
25 19
26 foo2 (test.js:15:2) 20 foo2 (test.js:15:2)
27 -- Promise.resolve --
28 twoPromises (test.js:35:2)
29 (anonymous) (expr.js:0:0)
30 21
31 22
32 Running test: testOneLimitTwoSetTimeouts 23 Running test: testOneLimitTwoSetTimeouts
33 foo1 (test.js:11:2) 24 foo1 (test.js:11:2)
34 25
35 foo2 (test.js:15:2) 26 foo2 (test.js:15:2)
36 -- setTimeout --
37 twoSetTimeout (test.js:41:2)
38 (anonymous) (expr.js:0:0)
39 27
40 28
41 Running test: testTwoLimitTwoSetTimeouts 29 Running test: testTwoLimitTwoSetTimeouts
42 foo1 (test.js:11:2) 30 foo1 (test.js:11:2)
43 -- setTimeout --
44 twoSetTimeout (test.js:40:2)
45 (anonymous) (expr.js:0:0)
46 31
47 foo2 (test.js:15:2) 32 foo2 (test.js:15:2)
48 -- setTimeout -- 33 -- setTimeout --
49 twoSetTimeout (test.js:41:2) 34 twoSetTimeout (test.js:41:2)
50 (anonymous) (expr.js:0:0) 35 (anonymous) (expr.js:0:0)
51 36
52 37
53 Running test: testTenLimitTwentySetTimeouts 38 Running test: testTenLimitTwentySetTimeouts
54 foo1 (:0:17) 39 foo1 (:0:17)
55 (anonymous) (:0:28) 40 (anonymous) (:0:28)
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 -- setTimeout -- 113 -- setTimeout --
129 twentySetTimeout (test.js:55:4) 114 twentySetTimeout (test.js:55:4)
130 (anonymous) (expr.js:0:0) 115 (anonymous) (expr.js:0:0)
131 116
132 foo19 (:0:18) 117 foo19 (:0:18)
133 (anonymous) (:0:29) 118 (anonymous) (:0:29)
134 -- setTimeout -- 119 -- setTimeout --
135 twentySetTimeout (test.js:55:4) 120 twentySetTimeout (test.js:55:4)
136 (anonymous) (expr.js:0:0) 121 (anonymous) (expr.js:0:0)
137 122
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698