File: es6modulekindWithES5Target.symbols

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (47 lines) | stat: -rw-r--r-- 1,417 bytes parent folder | download | duplicates (2)
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
=== tests/cases/compiler/es6modulekindWithES5Target.ts ===

export class C {
>C : Symbol(C, Decl(es6modulekindWithES5Target.ts, 0, 0))

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

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

    method() { }
>method : Symbol(C.method, Decl(es6modulekindWithES5Target.ts, 3, 10))
}
export { C as C2 };
>C : Symbol(C2, Decl(es6modulekindWithES5Target.ts, 6, 8))
>C2 : Symbol(C2, Decl(es6modulekindWithES5Target.ts, 6, 8))

declare function foo(...args: any[]): any;
>foo : Symbol(foo, Decl(es6modulekindWithES5Target.ts, 6, 19))
>args : Symbol(args, Decl(es6modulekindWithES5Target.ts, 8, 21))

@foo
>foo : Symbol(foo, Decl(es6modulekindWithES5Target.ts, 6, 19))

export class D {
>D : Symbol(D, Decl(es6modulekindWithES5Target.ts, 8, 42))

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

    p = 1;
>p : Symbol(D.p, Decl(es6modulekindWithES5Target.ts, 11, 17))

    method() { }
>method : Symbol(D.method, Decl(es6modulekindWithES5Target.ts, 12, 10))
}
export { D as D2 };
>D : Symbol(D2, Decl(es6modulekindWithES5Target.ts, 15, 8))
>D2 : Symbol(D2, Decl(es6modulekindWithES5Target.ts, 15, 8))

class E { }
>E : Symbol(E, Decl(es6modulekindWithES5Target.ts, 15, 19))

export {E};
>E : Symbol(E, Decl(es6modulekindWithES5Target.ts, 18, 8))