|
Lines 1-7
a/LayoutTests/inspector/debugger/stepping/stepOver-expected.txt_sec1
|
| 1 |
ALERT: function log 1 |
|
|
| 2 |
ALERT: comma log 1 |
| 3 |
ALERT: comma log 2 |
| 4 |
ALERT: comma log 3 |
| 5 |
Checking pause locations when stepping with "stepOver". |
1 |
Checking pause locations when stepping with "stepOver". |
| 6 |
|
2 |
|
| 7 |
|
3 |
|
|
Lines 54-60
PAUSE AT testFunctions:18:5
a/LayoutTests/inspector/debugger/stepping/stepOver-expected.txt_sec2
|
| 54 |
16 function testFunctions() { |
50 |
16 function testFunctions() { |
| 55 |
-> 17 |debugger; |
51 |
-> 17 |debugger; |
| 56 |
18 let before = 1; |
52 |
18 let before = 1; |
| 57 |
19 testAlert("function log 1"); |
53 |
19 a(); |
| 58 |
20 let after = 2; |
54 |
20 let after = 2; |
| 59 |
|
55 |
|
| 60 |
PAUSE AT testFunctions:19:5 |
56 |
PAUSE AT testFunctions:19:5 |
|
Lines 62-68
PAUSE AT testFunctions:19:5
a/LayoutTests/inspector/debugger/stepping/stepOver-expected.txt_sec3
|
| 62 |
16 function testFunctions() { |
58 |
16 function testFunctions() { |
| 63 |
17 debugger; |
59 |
17 debugger; |
| 64 |
-> 18 |let before = 1; |
60 |
-> 18 |let before = 1; |
| 65 |
19 testAlert("function log 1"); |
61 |
19 a(); |
| 66 |
20 let after = 2; |
62 |
20 let after = 2; |
| 67 |
21 } |
63 |
21 } |
| 68 |
|
64 |
|
|
Lines 70-76
PAUSE AT testFunctions:20:5
a/LayoutTests/inspector/debugger/stepping/stepOver-expected.txt_sec4
|
| 70 |
16 function testFunctions() { |
66 |
16 function testFunctions() { |
| 71 |
17 debugger; |
67 |
17 debugger; |
| 72 |
18 let before = 1; |
68 |
18 let before = 1; |
| 73 |
-> 19 |testAlert("function log 1"); |
69 |
-> 19 |a(); |
| 74 |
20 let after = 2; |
70 |
20 let after = 2; |
| 75 |
21 } |
71 |
21 } |
| 76 |
22 |
72 |
22 |
|
Lines 78-84
PAUSE AT testFunctions:20:5
a/LayoutTests/inspector/debugger/stepping/stepOver-expected.txt_sec5
|
| 78 |
PAUSE AT testFunctions:21:5 |
74 |
PAUSE AT testFunctions:21:5 |
| 79 |
17 debugger; |
75 |
17 debugger; |
| 80 |
18 let before = 1; |
76 |
18 let before = 1; |
| 81 |
19 testAlert("function log 1"); |
77 |
19 a(); |
| 82 |
-> 20 |let after = 2; |
78 |
-> 20 |let after = 2; |
| 83 |
21 } |
79 |
21 } |
| 84 |
22 |
80 |
22 |
|
Lines 86-92
PAUSE AT testFunctions:21:5
a/LayoutTests/inspector/debugger/stepping/stepOver-expected.txt_sec6
|
| 86 |
|
82 |
|
| 87 |
PAUSE AT testFunctions:22:2 |
83 |
PAUSE AT testFunctions:22:2 |
| 88 |
18 let before = 1; |
84 |
18 let before = 1; |
| 89 |
19 testAlert("function log 1"); |
85 |
19 a(); |
| 90 |
20 let after = 2; |
86 |
20 let after = 2; |
| 91 |
-> 21 }| |
87 |
-> 21 }| |
| 92 |
22 |
88 |
22 |
|
Lines 200-271
PAUSE AT testCommas:40:5
a/LayoutTests/inspector/debugger/stepping/stepOver-expected.txt_sec7
|
| 200 |
37 |
196 |
37 |
| 201 |
38 function testCommas() { |
197 |
38 function testCommas() { |
| 202 |
-> 39 |debugger; |
198 |
-> 39 |debugger; |
| 203 |
40 let a = 1, |
199 |
40 let x = 1, |
| 204 |
41 b = 2, |
200 |
41 y = 2, |
| 205 |
42 c = 3; |
201 |
42 z = 3; |
| 206 |
|
202 |
|
| 207 |
PAUSE AT testCommas:41:5 |
203 |
PAUSE AT testCommas:41:5 |
| 208 |
37 |
204 |
37 |
| 209 |
38 function testCommas() { |
205 |
38 function testCommas() { |
| 210 |
39 debugger; |
206 |
39 debugger; |
| 211 |
-> 40 |let a = 1, |
207 |
-> 40 |let x = 1, |
| 212 |
41 b = 2, |
208 |
41 y = 2, |
| 213 |
42 c = 3; |
209 |
42 z = 3; |
| 214 |
43 testAlert("comma log 1"), testAlert("comma log 2"), testAlert("comma log 3"); |
210 |
43 a(), b(), c(); |
| 215 |
|
211 |
|
| 216 |
PAUSE AT testCommas:42:9 |
212 |
PAUSE AT testCommas:42:9 |
| 217 |
38 function testCommas() { |
213 |
38 function testCommas() { |
| 218 |
39 debugger; |
214 |
39 debugger; |
| 219 |
40 let a = 1, |
215 |
40 let x = 1, |
| 220 |
-> 41 |b = 2, |
216 |
-> 41 |y = 2, |
| 221 |
42 c = 3; |
217 |
42 z = 3; |
| 222 |
43 testAlert("comma log 1"), testAlert("comma log 2"), testAlert("comma log 3"); |
218 |
43 a(), b(), c(); |
| 223 |
44 } |
219 |
44 true && (a(), b(), c()); |
| 224 |
|
220 |
|
| 225 |
PAUSE AT testCommas:43:9 |
221 |
PAUSE AT testCommas:43:9 |
| 226 |
39 debugger; |
222 |
39 debugger; |
| 227 |
40 let a = 1, |
223 |
40 let x = 1, |
| 228 |
41 b = 2, |
224 |
41 y = 2, |
| 229 |
-> 42 |c = 3; |
225 |
-> 42 |z = 3; |
| 230 |
43 testAlert("comma log 1"), testAlert("comma log 2"), testAlert("comma log 3"); |
226 |
43 a(), b(), c(); |
| 231 |
44 } |
227 |
44 true && (a(), b(), c()); |
| 232 |
45 |
228 |
45 } |
| 233 |
|
229 |
|
| 234 |
PAUSE AT testCommas:44:5 |
230 |
PAUSE AT testCommas:44:5 |
| 235 |
40 let a = 1, |
231 |
40 let x = 1, |
| 236 |
41 b = 2, |
232 |
41 y = 2, |
| 237 |
42 c = 3; |
233 |
42 z = 3; |
| 238 |
-> 43 |testAlert("comma log 1"), testAlert("comma log 2"), testAlert("comma log 3"); |
234 |
-> 43 |a(), b(), c(); |
| 239 |
44 } |
235 |
44 true && (a(), b(), c()); |
| 240 |
45 |
236 |
45 } |
| 241 |
46 // --------- |
237 |
46 |
| 242 |
|
238 |
|
| 243 |
PAUSE AT testCommas:44:31 |
239 |
PAUSE AT testCommas:44:10 |
| 244 |
40 let a = 1, |
240 |
40 let x = 1, |
| 245 |
41 b = 2, |
241 |
41 y = 2, |
| 246 |
42 c = 3; |
242 |
42 z = 3; |
| 247 |
-> 43 testAlert("comma log 1"), |testAlert("comma log 2"), testAlert("comma log 3"); |
243 |
-> 43 a(), |b(), c(); |
| 248 |
44 } |
244 |
44 true && (a(), b(), c()); |
| 249 |
45 |
245 |
45 } |
| 250 |
46 // --------- |
246 |
46 |
| 251 |
|
247 |
|
| 252 |
PAUSE AT testCommas:44:57 |
248 |
PAUSE AT testCommas:44:15 |
| 253 |
40 let a = 1, |
249 |
40 let x = 1, |
| 254 |
41 b = 2, |
250 |
41 y = 2, |
| 255 |
42 c = 3; |
251 |
42 z = 3; |
| 256 |
-> 43 testAlert("comma log 1"), testAlert("comma log 2"), |testAlert("comma log 3"); |
252 |
-> 43 a(), b(), |c(); |
| 257 |
44 } |
253 |
44 true && (a(), b(), c()); |
| 258 |
45 |
254 |
45 } |
| 259 |
46 // --------- |
255 |
46 |
| 260 |
|
256 |
|
| 261 |
PAUSE AT testCommas:45:2 |
257 |
PAUSE AT testCommas:45:5 |
| 262 |
41 b = 2, |
258 |
41 y = 2, |
| 263 |
42 c = 3; |
259 |
42 z = 3; |
| 264 |
43 testAlert("comma log 1"), testAlert("comma log 2"), testAlert("comma log 3"); |
260 |
43 a(), b(), c(); |
| 265 |
-> 44 }| |
261 |
-> 44 |true && (a(), b(), c()); |
| 266 |
45 |
262 |
45 } |
| 267 |
46 // --------- |
263 |
46 |
| 268 |
47 |
264 |
47 function a() { } |
|
|
265 |
|
| 266 |
PAUSE AT testCommas:45:14 |
| 267 |
41 y = 2, |
| 268 |
42 z = 3; |
| 269 |
43 a(), b(), c(); |
| 270 |
-> 44 true && (|a(), b(), c()); |
| 271 |
45 } |
| 272 |
46 |
| 273 |
47 function a() { } |
| 274 |
|
| 275 |
PAUSE AT testCommas:45:19 |
| 276 |
41 y = 2, |
| 277 |
42 z = 3; |
| 278 |
43 a(), b(), c(); |
| 279 |
-> 44 true && (a(), |b(), c()); |
| 280 |
45 } |
| 281 |
46 |
| 282 |
47 function a() { } |
| 283 |
|
| 284 |
PAUSE AT testCommas:45:24 |
| 285 |
41 y = 2, |
| 286 |
42 z = 3; |
| 287 |
43 a(), b(), c(); |
| 288 |
-> 44 true && (a(), b(), |c()); |
| 289 |
45 } |
| 290 |
46 |
| 291 |
47 function a() { } |
| 292 |
|
| 293 |
PAUSE AT testCommas:46:2 |
| 294 |
42 z = 3; |
| 295 |
43 a(), b(), c(); |
| 296 |
44 true && (a(), b(), c()); |
| 297 |
-> 45 }| |
| 298 |
46 |
| 299 |
47 function a() { } |
| 300 |
48 function b() { } |
| 269 |
|
301 |
|
| 270 |
RESUMED |
302 |
RESUMED |
| 271 |
|
303 |
|