File: esnextmodulekindWithES5Target.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 (46 lines) | stat: -rw-r--r-- 1,492 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
=== tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target.ts ===
export class C {
>C : Symbol(C, Decl(esnextmodulekindWithES5Target.ts, 0, 0))

    static s = 0;
>s : Symbol(C.s, Decl(esnextmodulekindWithES5Target.ts, 0, 16))

    p = 1;
>p : Symbol(C.p, Decl(esnextmodulekindWithES5Target.ts, 1, 17))

    method() { }
>method : Symbol(C.method, Decl(esnextmodulekindWithES5Target.ts, 2, 10))
}
export { C as C2 };
>C : Symbol(C, Decl(esnextmodulekindWithES5Target.ts, 0, 0))
>C2 : Symbol(C2, Decl(esnextmodulekindWithES5Target.ts, 5, 8))

declare function foo(...args: any[]): any;
>foo : Symbol(foo, Decl(esnextmodulekindWithES5Target.ts, 5, 19))
>args : Symbol(args, Decl(esnextmodulekindWithES5Target.ts, 7, 21))

@foo
>foo : Symbol(foo, Decl(esnextmodulekindWithES5Target.ts, 5, 19))

export class D {
>D : Symbol(D, Decl(esnextmodulekindWithES5Target.ts, 7, 42))

    static s = 0;
>s : Symbol(D.s, Decl(esnextmodulekindWithES5Target.ts, 9, 16))

    p = 1;
>p : Symbol(D.p, Decl(esnextmodulekindWithES5Target.ts, 10, 17))

    method() { }
>method : Symbol(D.method, Decl(esnextmodulekindWithES5Target.ts, 11, 10))
}
export { D as D2 };
>D : Symbol(D, Decl(esnextmodulekindWithES5Target.ts, 7, 42))
>D2 : Symbol(D2, Decl(esnextmodulekindWithES5Target.ts, 14, 8))

class E { }
>E : Symbol(E, Decl(esnextmodulekindWithES5Target.ts, 14, 19))

export {E};
>E : Symbol(E, Decl(esnextmodulekindWithES5Target.ts, 17, 8))