File: capturedLetConstInLoop2_ES6.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (517 lines) | stat: -rw-r--r-- 19,612 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
=== tests/cases/compiler/capturedLetConstInLoop2_ES6.ts ===
// ========let
function foo0(x) {
>foo0 : Symbol(foo0, Decl(capturedLetConstInLoop2_ES6.ts, 0, 0))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 1, 14))

    for (let x of []) {
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 2, 12))

        let a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 3, 11))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 2, 12))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 3, 11))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 2, 12))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 3, 11))
    }
}

function foo0_1(x) {
>foo0_1 : Symbol(foo0_1, Decl(capturedLetConstInLoop2_ES6.ts, 7, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 9, 16))

    for (let x in []) {
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 10, 12))

        let a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 11, 11))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 10, 12))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 11, 11))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 10, 12))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 11, 11))
    }
}

function foo1(x) {
>foo1 : Symbol(foo1, Decl(capturedLetConstInLoop2_ES6.ts, 15, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 17, 14))

    for (let x = 0; x < 1; ++x) {
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 18, 12))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 18, 12))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 18, 12))

        let a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 19, 11))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 18, 12))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 19, 11))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 18, 12))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 19, 11))
    }
}

function foo2(x) {
>foo2 : Symbol(foo2, Decl(capturedLetConstInLoop2_ES6.ts, 23, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 25, 14))

    while (1 === 1) {
        let a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 27, 11))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 25, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 27, 11))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 25, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 27, 11))
    }
}

function foo3(x) {
>foo3 : Symbol(foo3, Decl(capturedLetConstInLoop2_ES6.ts, 31, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 33, 14))

    do {
        let x;
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 35, 11))

        let a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 36, 11))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 35, 11))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 36, 11))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 35, 11))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 36, 11))

    } while (1 === 1)
}

function foo4(x) {
>foo4 : Symbol(foo4, Decl(capturedLetConstInLoop2_ES6.ts, 40, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 42, 14))

    for (let y = 0; y < 1; ++y) {
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 43, 12))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 43, 12))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 43, 12))

        let a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 44, 11))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        let x = 1;
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 45, 11))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 45, 11))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 44, 11))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 45, 11))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 44, 11))
    }
}

function foo5(x) {
>foo5 : Symbol(foo5, Decl(capturedLetConstInLoop2_ES6.ts, 49, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 51, 14))

    for (let x = 0, y = 1; x < 1; ++x) {
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 52, 12))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 52, 19))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 52, 12))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 52, 12))

        let a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 53, 11))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + y + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 52, 12))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 52, 19))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 53, 11))

        (() => x + y + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 52, 12))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 52, 19))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 53, 11))
    }
}


function foo6(x) {
>foo6 : Symbol(foo6, Decl(capturedLetConstInLoop2_ES6.ts, 57, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 60, 14))

    while (1 === 1) {
        let x, y;
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 62, 11))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 62, 14))

        let a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 63, 11))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + y + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 62, 11))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 62, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 63, 11))

        (() => x + y + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 62, 11))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 62, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 63, 11))
    }
}

function foo7(x) {
>foo7 : Symbol(foo7, Decl(capturedLetConstInLoop2_ES6.ts, 67, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 69, 14))

    do {
        let x, y;
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 71, 11))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 71, 14))

        let a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 72, 11))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + y + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 71, 11))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 71, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 72, 11))

        (() => x + y + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 71, 11))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 71, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 72, 11))

    } while (1 === 1)
}


function foo8(x) {
>foo8 : Symbol(foo8, Decl(capturedLetConstInLoop2_ES6.ts, 76, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 79, 14))

    for (let y = 0; y < 1; ++y) {
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 80, 12))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 80, 12))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 80, 12))

        let x = 1;
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 81, 11))

        let a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 82, 11))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + y + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 81, 11))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 80, 12))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 82, 11))

        (() => x + y + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 81, 11))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 80, 12))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 82, 11))
    }
}
///=======const
function foo0_c(x) {
>foo0_c : Symbol(foo0_c, Decl(capturedLetConstInLoop2_ES6.ts, 86, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 88, 16))

    for (const x of []) {
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 89, 14))

        const a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 90, 13))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 89, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 90, 13))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 89, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 90, 13))
    }
}

function foo0_1_c(x) {
>foo0_1_c : Symbol(foo0_1_c, Decl(capturedLetConstInLoop2_ES6.ts, 94, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 96, 18))

    for (const x in []) {
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 97, 14))

        const a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 98, 13))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 97, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 98, 13))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 97, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 98, 13))
    }
}

function foo1_c(x) {
>foo1_c : Symbol(foo1_c, Decl(capturedLetConstInLoop2_ES6.ts, 102, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 104, 16))

    for (const x = 0; x < 1;) {
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 105, 14))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 105, 14))

        const a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 106, 13))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 105, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 106, 13))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 105, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 106, 13))
    }
}

function foo2_c(x) {
>foo2_c : Symbol(foo2_c, Decl(capturedLetConstInLoop2_ES6.ts, 110, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 112, 16))

    while (1 === 1) {
        const a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 114, 13))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 112, 16))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 114, 13))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 112, 16))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 114, 13))
    }
}

function foo3_c(x) {
>foo3_c : Symbol(foo3_c, Decl(capturedLetConstInLoop2_ES6.ts, 118, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 120, 16))

    do {
        const x = 1;
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 122, 13))

        const a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 123, 13))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 122, 13))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 123, 13))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 122, 13))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 123, 13))

    } while (1 === 1)
}

function foo4_c(x) {
>foo4_c : Symbol(foo4_c, Decl(capturedLetConstInLoop2_ES6.ts, 127, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 129, 16))

    for (const y = 0; y < 1;) {
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 130, 14))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 130, 14))

        const a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 131, 13))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        const x = 1;
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 132, 13))

        (function() { return x + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 132, 13))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 131, 13))

        (() => x + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 132, 13))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 131, 13))
    }
}

function foo5_c(x) {
>foo5_c : Symbol(foo5_c, Decl(capturedLetConstInLoop2_ES6.ts, 136, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 138, 16))

    for (const x = 0, y = 1; x < 1;) {
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 139, 14))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 139, 21))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 139, 14))

        const a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 140, 13))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + y + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 139, 14))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 139, 21))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 140, 13))

        (() => x + y + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 139, 14))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 139, 21))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 140, 13))
    }
}


function foo6_c(x) {
>foo6_c : Symbol(foo6_c, Decl(capturedLetConstInLoop2_ES6.ts, 144, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 147, 16))

    while (1 === 1) {
        const x = 1, y =1 ;
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 149, 13))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 149, 20))

        const a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 150, 13))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + y + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 149, 13))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 149, 20))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 150, 13))

        (() => x + y + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 149, 13))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 149, 20))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 150, 13))
    }
}

function foo7_c(x) {
>foo7_c : Symbol(foo7_c, Decl(capturedLetConstInLoop2_ES6.ts, 154, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 156, 16))

    do {
        const x = 1, y = 1;
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 158, 13))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 158, 20))

        const a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 159, 13))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + y + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 158, 13))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 158, 20))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 159, 13))

        (() => x + y + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 158, 13))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 158, 20))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 159, 13))

    } while (1 === 1)
}


function foo8_c(x) {
>foo8_c : Symbol(foo8_c, Decl(capturedLetConstInLoop2_ES6.ts, 163, 1))
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 166, 16))

    for (const y = 0; y < 1;) {
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 167, 14))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 167, 14))

        const x = 1;
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 168, 13))

        const a = arguments.length;
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 169, 13))
>arguments.length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))
>arguments : Symbol(arguments)
>length : Symbol(IArguments.length, Decl(lib.es5.d.ts, --, --))

        (function() { return x + y + a });
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 168, 13))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 167, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 169, 13))

        (() => x + y + a);
>x : Symbol(x, Decl(capturedLetConstInLoop2_ES6.ts, 168, 13))
>y : Symbol(y, Decl(capturedLetConstInLoop2_ES6.ts, 167, 14))
>a : Symbol(a, Decl(capturedLetConstInLoop2_ES6.ts, 169, 13))
    }
}