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
|
=== tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target11.ts ===
declare function foo(...args: any[]): any;
>foo : Symbol(foo, Decl(esnextmodulekindWithES5Target11.ts, 0, 0))
>args : Symbol(args, Decl(esnextmodulekindWithES5Target11.ts, 0, 21))
@foo
>foo : Symbol(foo, Decl(esnextmodulekindWithES5Target11.ts, 0, 0))
export default class C {
>C : Symbol(C, Decl(esnextmodulekindWithES5Target11.ts, 0, 42))
static x() { return C.y; }
>x : Symbol(C.x, Decl(esnextmodulekindWithES5Target11.ts, 2, 24))
>C.y : Symbol(C.y, Decl(esnextmodulekindWithES5Target11.ts, 3, 30))
>C : Symbol(C, Decl(esnextmodulekindWithES5Target11.ts, 0, 42))
>y : Symbol(C.y, Decl(esnextmodulekindWithES5Target11.ts, 3, 30))
static y = 1
>y : Symbol(C.y, Decl(esnextmodulekindWithES5Target11.ts, 3, 30))
p = 1;
>p : Symbol(C.p, Decl(esnextmodulekindWithES5Target11.ts, 4, 16))
method() { }
>method : Symbol(C.method, Decl(esnextmodulekindWithES5Target11.ts, 5, 10))
}
|