File: importCallExpressionAsyncES6UMD.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 (57 lines) | stat: -rw-r--r-- 1,612 bytes parent folder | download | duplicates (65)
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
=== tests/cases/conformance/dynamicImport/test.ts ===
export async function fn() {
>fn : Symbol(fn, Decl(test.ts, 0, 0))

    const req = await import('./test') // ONE
>req : Symbol(req, Decl(test.ts, 1, 9))
>'./test' : Symbol("tests/cases/conformance/dynamicImport/test", Decl(test.ts, 0, 0))
}

export class cl1 {
>cl1 : Symbol(cl1, Decl(test.ts, 2, 1))

    public async m() {
>m : Symbol(cl1.m, Decl(test.ts, 4, 18))

        const req = await import('./test') // TWO
>req : Symbol(req, Decl(test.ts, 6, 13))
>'./test' : Symbol("tests/cases/conformance/dynamicImport/test", Decl(test.ts, 0, 0))
    }
}

export const obj = {
>obj : Symbol(obj, Decl(test.ts, 10, 12))

    m: async () => {
>m : Symbol(m, Decl(test.ts, 10, 20))

        const req = await import('./test') // THREE
>req : Symbol(req, Decl(test.ts, 12, 13))
>'./test' : Symbol("tests/cases/conformance/dynamicImport/test", Decl(test.ts, 0, 0))
    }
}

export class cl2 {
>cl2 : Symbol(cl2, Decl(test.ts, 14, 1))

    public p = {
>p : Symbol(cl2.p, Decl(test.ts, 16, 18))

        m: async () => {
>m : Symbol(m, Decl(test.ts, 17, 16))

            const req = await import('./test') // FOUR
>req : Symbol(req, Decl(test.ts, 19, 17))
>'./test' : Symbol("tests/cases/conformance/dynamicImport/test", Decl(test.ts, 0, 0))
        }
    }
}

export const l = async () => {
>l : Symbol(l, Decl(test.ts, 24, 12))

    const req = await import('./test') // FIVE
>req : Symbol(req, Decl(test.ts, 25, 9))
>'./test' : Symbol("tests/cases/conformance/dynamicImport/test", Decl(test.ts, 0, 0))
}