File: es6modulekindWithES5Target3.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 (20 lines) | stat: -rw-r--r-- 677 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
=== tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target3.ts ===
declare function foo(...args: any[]): any;
>foo : Symbol(foo, Decl(es6modulekindWithES5Target3.ts, 0, 0))
>args : Symbol(args, Decl(es6modulekindWithES5Target3.ts, 0, 21))

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

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

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

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

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