File: es6modulekindWithES5Target3.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 (22 lines) | stat: -rw-r--r-- 658 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
=== tests/cases/compiler/es6modulekindWithES5Target3.ts ===


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

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

export default class D {
>D : Symbol(D, Decl(es6modulekindWithES5Target3.ts, 2, 42))

    static s = 0;
>s : Symbol(D.s, Decl(es6modulekindWithES5Target3.ts, 4, 24))

    p = 1;
>p : Symbol(D.p, Decl(es6modulekindWithES5Target3.ts, 5, 17))

    method() { }
>method : Symbol(D.method, Decl(es6modulekindWithES5Target3.ts, 6, 10))
}