File: es5-asyncFunctionNestedLoops.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 (30 lines) | stat: -rw-r--r-- 999 bytes parent folder | download | duplicates (7)
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
=== tests/cases/compiler/es5-asyncFunctionNestedLoops.ts ===
declare var x, y, z, a, b, c;
>x : Symbol(x, Decl(es5-asyncFunctionNestedLoops.ts, 0, 11))
>y : Symbol(y, Decl(es5-asyncFunctionNestedLoops.ts, 0, 14))
>z : Symbol(z, Decl(es5-asyncFunctionNestedLoops.ts, 0, 17))
>a : Symbol(a, Decl(es5-asyncFunctionNestedLoops.ts, 0, 20))
>b : Symbol(b, Decl(es5-asyncFunctionNestedLoops.ts, 0, 23))
>c : Symbol(c, Decl(es5-asyncFunctionNestedLoops.ts, 0, 26))

async function nestedLoops() {
>nestedLoops : Symbol(nestedLoops, Decl(es5-asyncFunctionNestedLoops.ts, 0, 29))

    A: while (x) {
>x : Symbol(x, Decl(es5-asyncFunctionNestedLoops.ts, 0, 11))

        await y;
>y : Symbol(y, Decl(es5-asyncFunctionNestedLoops.ts, 0, 14))

        while (z) {
>z : Symbol(z, Decl(es5-asyncFunctionNestedLoops.ts, 0, 17))

            continue A;
        }
        while (a) {
>a : Symbol(a, Decl(es5-asyncFunctionNestedLoops.ts, 0, 20))

            continue;
        }
    }
}