TypeScript/tests/baselines/reference/es6modulekindWithES5Target.symbols
2016-06-09 15:52:17 -07:00

48 lines
1.4 KiB
Plaintext

=== tests/cases/compiler/es6modulekindWithES5Target.ts ===
export class C {
>C : Symbol(C, Decl(es6modulekindWithES5Target.ts, 0, 0))
static s = 0;
>s : Symbol(C.s, Decl(es6modulekindWithES5Target.ts, 1, 16))
p = 1;
>p : Symbol(C.p, Decl(es6modulekindWithES5Target.ts, 2, 17))
method() { }
>method : Symbol(C.method, Decl(es6modulekindWithES5Target.ts, 3, 10))
}
export { C as C2 };
>C : Symbol(C2, Decl(es6modulekindWithES5Target.ts, 6, 8))
>C2 : Symbol(C2, Decl(es6modulekindWithES5Target.ts, 6, 8))
declare function foo(...args: any[]): any;
>foo : Symbol(foo, Decl(es6modulekindWithES5Target.ts, 6, 19))
>args : Symbol(args, Decl(es6modulekindWithES5Target.ts, 8, 21))
@foo
>foo : Symbol(foo, Decl(es6modulekindWithES5Target.ts, 6, 19))
export class D {
>D : Symbol(D, Decl(es6modulekindWithES5Target.ts, 8, 42))
static s = 0;
>s : Symbol(D.s, Decl(es6modulekindWithES5Target.ts, 10, 16))
p = 1;
>p : Symbol(D.p, Decl(es6modulekindWithES5Target.ts, 11, 17))
method() { }
>method : Symbol(D.method, Decl(es6modulekindWithES5Target.ts, 12, 10))
}
export { D as D2 };
>D : Symbol(D2, Decl(es6modulekindWithES5Target.ts, 15, 8))
>D2 : Symbol(D2, Decl(es6modulekindWithES5Target.ts, 15, 8))
class E { }
>E : Symbol(E, Decl(es6modulekindWithES5Target.ts, 15, 19))
export {E};
>E : Symbol(E, Decl(es6modulekindWithES5Target.ts, 18, 8))