File: es6modulekindWithES5Target11.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 (27 lines) | stat: -rw-r--r-- 953 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
=== tests/cases/compiler/es6modulekindWithES5Target11.ts ===

declare function foo(...args: any[]): any;
>foo : Symbol(foo, Decl(es6modulekindWithES5Target11.ts, 0, 0))
>args : Symbol(args, Decl(es6modulekindWithES5Target11.ts, 1, 21))

@foo
>foo : Symbol(foo, Decl(es6modulekindWithES5Target11.ts, 0, 0))

export default class C {
>C : Symbol(C, Decl(es6modulekindWithES5Target11.ts, 1, 42))

    static x() { return C.y; }
>x : Symbol(C.x, Decl(es6modulekindWithES5Target11.ts, 3, 24))
>C.y : Symbol(C.y, Decl(es6modulekindWithES5Target11.ts, 4, 30))
>C : Symbol(C, Decl(es6modulekindWithES5Target11.ts, 1, 42))
>y : Symbol(C.y, Decl(es6modulekindWithES5Target11.ts, 4, 30))

    static y = 1
>y : Symbol(C.y, Decl(es6modulekindWithES5Target11.ts, 4, 30))

    p = 1;
>p : Symbol(C.p, Decl(es6modulekindWithES5Target11.ts, 5, 16))

    method() { }
>method : Symbol(C.method, Decl(es6modulekindWithES5Target11.ts, 6, 10))
}