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

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

Issue 2655253004: [inspector] introduced stepIntoAsync for chained callbacks (Closed)
Patch Set: fixed async/await and added tests 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
« no previous file with comments | « test/inspector/debugger/step-into-async.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 Checks stepIntoAsync for Promise.then
2
3 Running test: testBasic
4 basic (test.js:16:2)
5 (anonymous) (:0:0)
6
7 Executing: stepInto
8 basic (test.js:17:2)
9 (anonymous) (:0:0)
10
11 Executing: stepInto
12 basic (test.js:17:4)
13 (anonymous) (:0:0)
14 {
15 method : Debugger.paused
16 params : {
17 data : {
18 stepIntoAsyncAvailable : true
19 }
20 hitBreakpoints : [
21 ]
22 reason : other
23 }
24 }
25
26 Executing: stepIntoAsync
27 foo (test.js:8:12)
28
29 Executing: resume
30
31 Running test: testPromiseResolve
32 promiseResolve (test.js:23:2)
33 (anonymous) (:0:0)
34
35 Executing: stepInto
36 promiseResolve (test.js:24:2)
37 (anonymous) (:0:0)
38
39 Executing: stepInto
40 promiseResolve (test.js:24:20)
41 (anonymous) (:0:0)
42 {
43 method : Debugger.paused
44 params : {
45 data : {
46 stepIntoAsyncAvailable : true
47 }
48 hitBreakpoints : [
49 ]
50 reason : other
51 }
52 }
53
54 Executing: stepIntoAsync
55 foo (test.js:8:12)
56
57 Executing: resume
58
59 Running test: testPromiseReject
60 promiseReject (test.js:28:2)
61 (anonymous) (:0:0)
62
63 Executing: stepInto
64 promiseReject (test.js:29:2)
65 (anonymous) (:0:0)
66
67 Executing: stepInto
68 promiseReject (test.js:29:24)
69 (anonymous) (:0:0)
70 {
71 method : Debugger.paused
72 params : {
73 data : {
74 stepIntoAsyncAvailable : true
75 }
76 hitBreakpoints : [
77 ]
78 reason : other
79 }
80 }
81
82 Executing: stepIntoAsync
83 foo (test.js:8:12)
84
85 Executing: resume
86
87 Running test: testPromiseAll
88 promiseAll (test.js:33:2)
89 (anonymous) (:0:0)
90
91 Executing: stepInto
92 promiseAll (test.js:34:2)
93 (anonymous) (:0:0)
94
95 Executing: stepInto
96 promiseAll (test.js:34:37)
97 (anonymous) (:0:0)
98 {
99 method : Debugger.paused
100 params : {
101 data : {
102 stepIntoAsyncAvailable : true
103 }
104 hitBreakpoints : [
105 ]
106 reason : other
107 }
108 }
109
110 Executing: stepIntoAsync
111 foo (test.js:8:12)
112
113 Executing: resume
114
115 Running test: testPromiseRace
116 promiseRace (test.js:38:2)
117 (anonymous) (:0:0)
118
119 Executing: stepInto
120 promiseRace (test.js:39:2)
121 (anonymous) (:0:0)
122
123 Executing: stepInto
124 promiseRace (test.js:39:38)
125 (anonymous) (:0:0)
126 {
127 method : Debugger.paused
128 params : {
129 data : {
130 stepIntoAsyncAvailable : true
131 }
132 hitBreakpoints : [
133 ]
134 reason : other
135 }
136 }
137
138 Executing: stepIntoAsync
139 foo (test.js:8:12)
140
141 Executing: resume
142
143 Running test: testTwoChainedCallbacks
144 twoChainedCallbacks (test.js:43:2)
145 (anonymous) (:0:0)
146
147 Executing: stepInto
148 twoChainedCallbacks (test.js:44:2)
149 (anonymous) (:0:0)
150
151 Executing: stepInto
152 twoChainedCallbacks (test.js:44:20)
153 (anonymous) (:0:0)
154 {
155 method : Debugger.paused
156 params : {
157 data : {
158 stepIntoAsyncAvailable : true
159 }
160 hitBreakpoints : [
161 ]
162 reason : other
163 }
164 }
165
166 Executing: stepInto
167 twoChainedCallbacks (test.js:44:30)
168 (anonymous) (:0:0)
169 {
170 method : Debugger.paused
171 params : {
172 data : {
173 stepIntoAsyncAvailable : true
174 }
175 hitBreakpoints : [
176 ]
177 reason : other
178 }
179 }
180
181 Executing: stepIntoAsync
182 foo (test.js:8:12)
183
184 Executing: resume
185
186 Running test: testNewPromise
187 newPromise (test.js:49:2)
188 (anonymous) (:0:0)
189
190 Executing: stepInto
191 newPromise (test.js:50:2)
192 (anonymous) (:0:0)
193
194 Executing: stepInto
195 r (test.js:50:27)
196 newPromise (test.js:50:2)
197 (anonymous) (:0:0)
198
199 Executing: stepOut
200 newPromise (test.js:50:32)
201 (anonymous) (:0:0)
202
203 Executing: stepInto
204 newPromise (test.js:50:32)
205 (anonymous) (:0:0)
206 {
207 method : Debugger.paused
208 params : {
209 data : {
210 stepIntoAsyncAvailable : true
211 }
212 hitBreakpoints : [
213 ]
214 reason : other
215 }
216 }
217
218 Executing: stepIntoAsync
219 boo (test.js:11:12)
220
221 Executing: resume
222
223 Running test: testReturnedPromise
224 returnedPromise (test.js:58:2)
225 (anonymous) (:0:0)
226
227 Executing: stepInto
228 returnedPromise (test.js:59:2)
229 (anonymous) (:0:0)
230
231 Executing: stepInto
232 promise (test.js:56:4)
233 returnedPromise (test.js:59:2)
234 (anonymous) (:0:0)
235
236 Executing: stepOut
237 returnedPromise (test.js:59:12)
238 (anonymous) (:0:0)
239
240 Executing: stepInto
241 returnedPromise (test.js:59:12)
242 (anonymous) (:0:0)
243 {
244 method : Debugger.paused
245 params : {
246 data : {
247 stepIntoAsyncAvailable : true
248 }
249 hitBreakpoints : [
250 ]
251 reason : other
252 }
253 }
254
255 Executing: stepIntoAsync
256 boo (test.js:11:12)
257
258 Executing: resume
259
260 Running test: testAsyncAwait
261 asyncAwait (test.js:71:2)
262 (anonymous) (:0:0)
263
264 Executing: stepInto
265 asyncAwait (test.js:72:2)
266 (anonymous) (:0:0)
267
268 Executing: stepInto
269 foo1 (test.js:68:10)
270 asyncAwait (test.js:72:2)
271 (anonymous) (:0:0)
272
273 Executing: stepInto
274 foo2 (test.js:64:18)
275 foo1 (test.js:68:10)
276 asyncAwait (test.js:72:2)
277 (anonymous) (:0:0)
278
279 Executing: stepInto
280 foo2 (test.js:64:4)
281 foo1 (test.js:68:10)
282 asyncAwait (test.js:72:2)
283 (anonymous) (:0:0)
284
285 Executing: stepInto
286 foo2 (test.js:65:2)
287
288 Executing: stepInto
289 foo1 (test.js:69:4)
290
291 Executing: stepInto
292 foo1 (test.js:70:2)
293
294 Executing: resume
295
296 Running test: testResumeWorkAfterBreak
297 basic (test.js:16:2)
298 (anonymous) (:0:0)
299
300 Executing: stepInto
301 basic (test.js:17:2)
302 (anonymous) (:0:0)
303
304 Executing: stepInto
305 basic (test.js:17:4)
306 (anonymous) (:0:0)
307 {
308 method : Debugger.paused
309 params : {
310 data : {
311 stepIntoAsyncAvailable : true
312 }
313 hitBreakpoints : [
314 ]
315 reason : other
316 }
317 }
318
319 Executing: resume
320
321 Running test: testStepIntoAsyncWithoutScheduled
322 basic (test.js:16:2)
323 (anonymous) (:0:0)
324
325 Executing: stepIntoAsync
326 {
327 error : {
328 code : -32000
329 message : No scheduled callback for stepInto available.
330 }
331 id : <messageId>
332 }
OLDNEW
« no previous file with comments | « test/inspector/debugger/step-into-async.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698