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

Side by Side Diff: test/inspector/debugger/async-stack-for-promise-expected.txt

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 unified diff | Download patch
OLDNEW
(Empty)
1 Checks that async chains for promises are correct.
2
3 Running test: testPromise
4 foo1 (test.js:9:2)
5 -- Promise.resolve --
6 promise (test.js:20:2)
7 (anonymous) (testPromise.js:0:0)
8
9
10 Running test: testPromiseResolvedBySetTimeout
11 foo1 (test.js:9:2)
12 -- setTimeout --
13 promiseResolvedBySetTimeout (test.js:28:2)
14 (anonymous) (testPromiseResolvedBySetTimeout.js:0:0)
15
16
17 Running test: testPromiseAll
18 foo1 (test.js:9:2)
19 -- Promise.resolve --
20 promiseAll (test.js:39:2)
21 (anonymous) (testPromiseAll.js:0:0)
22
23
24 Running test: testPromiseAllReverseOrder
25 foo1 (test.js:9:2)
26 -- Promise.resolve --
27 promiseAllReverseOrder (test.js:50:2)
28 (anonymous) (testPromiseAllReverseOrder.js:0:0)
29
30
31 Running test: testPromiseRace
32 foo1 (test.js:9:2)
33 -- Promise.resolve --
34 promiseRace (test.js:60:2)
35 (anonymous) (testPromiseRace.js:0:0)
36
37
38 Running test: testTwoChainedCallbacks
39 foo1 (test.js:9:2)
40 -- Promise.resolve --
41 twoChainedCallbacks (test.js:69:2)
42 (anonymous) (testTwoChainedCallbacks.js:0:0)
43
44 foo2 (test.js:13:2)
45 -- Promise.resolve --
46 twoChainedCallbacks (test.js:69:2)
47 (anonymous) (testTwoChainedCallbacks.js:0:0)
48
49
50 Running test: testPromiseResolve
51 foo1 (test.js:9:2)
52 -- Promise.resolve --
53 promiseResolve (test.js:74:17)
54 (anonymous) (testPromiseResolve.js:0:0)
55
56 foo2 (test.js:13:2)
57 -- Promise.resolve --
58 promiseResolve (test.js:74:17)
59 (anonymous) (testPromiseResolve.js:0:0)
60
61
62 Running test: testThenableJobResolvedInSetTimeout
63 foo1 (test.js:9:2)
64 -- setTimeout --
65 thenableJob (test.js:81:4)
66 p1.then (test.js:86:25)
67 -- Promise.resolve --
68 thenableJobResolvedInSetTimeout (test.js:87:2)
69 (anonymous) (testThenableJobResolvedInSetTimeout.js:0:0)
70
71
72 Running test: testThenableJobResolvedInSetTimeoutWithStack
73 foo1 (test.js:9:2)
74 -- Promise.resolve --
75 inner (test.js:94:6)
76 -- setTimeout --
77 thenableJob (test.js:99:4)
78 p1.then (test.js:104:25)
79 -- Promise.resolve --
80 thenableJobResolvedInSetTimeoutWithStack (test.js:105:2)
81 (anonymous) (testThenableJobResolvedInSetTimeoutWithStack.js:0:0)
82
83
84 Running test: testThenableJobResolvedByPromise
85 foo1 (test.js:9:2)
86 -- Promise.resolve --
87 thenableJob (test.js:113:12)
88 p1.then (test.js:118:25)
89 -- Promise.resolve --
90 thenableJobResolvedByPromise (test.js:119:2)
91 (anonymous) (testThenableJobResolvedByPromise.js:0:0)
92
93
94 Running test: testThenableJobResolvedByPromiseWithStack
95 foo1 (test.js:9:2)
96 -- Promise.resolve --
97 inner (test.js:126:6)
98 -- Promise.resolve --
99 thenableJob (test.js:131:12)
100 p1.then (test.js:136:25)
101 -- Promise.resolve --
102 thenableJobResolvedByPromiseWithStack (test.js:137:2)
103 (anonymous) (testThenableJobResolvedByPromiseWithStack.js:0:0)
104
105
106 Running test: testLateThenCallback
107 foo1 (test.js:9:2)
108 -- Promise.resolve --
109 lateThenCallback (test.js:144:2)
110 (anonymous) (testLateThenCallback.js:0:0)
111
112
113 Running test: testComplex
114 inner1 (test.js:154:6)
115 foo1 (test.js:156:4)
116 -- Promise.resolve --
117 inner2 (test.js:162:6)
118 -- Promise.resolve --
119 foo2 (test.js:165:12)
120 -- Promise.resolve --
121 inner3 (test.js:172:6)
122 -- setTimeout --
123 foo3 (test.js:175:4)
124 -- Promise.resolve --
125 foo5 (test.js:187:52)
126 -- Promise.resolve --
127 foo6 (test.js:192:34)
128 -- Promise.resolve --
129 complex (test.js:196:18)
130 (anonymous) (testComplex.js:0:0)
131
132 p.then (test.js:207:8)
133 -- Promise.resolve --
134 inner2 (test.js:162:6)
135 -- Promise.resolve --
136 foo2 (test.js:165:12)
137 -- Promise.resolve --
138 inner3 (test.js:172:6)
139 -- setTimeout --
140 foo3 (test.js:175:4)
141 -- Promise.resolve --
142 foo5 (test.js:187:52)
143 -- Promise.resolve --
144 foo6 (test.js:192:34)
145 -- Promise.resolve --
146 complex (test.js:196:18)
147 (anonymous) (testComplex.js:0:0)
148
149
150 Running test: testReject
151 foo1 (test.js:9:2)
152 -- Promise.reject --
153 reject (test.js:217:17)
154 (anonymous) (testReject.js:0:0)
155
OLDNEW
« no previous file with comments | « test/inspector/debugger/async-stack-for-promise.js ('k') | test/inspector/runtime/await-promise-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698