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))
}
|