TypeScript/tests/baselines/reference/emitArrowFunctionAsIs.symbols
2015-04-15 16:44:20 -07:00

15 lines
573 B
Plaintext

=== tests/cases/conformance/es6/arrowFunction/emitArrowFunctionAsIs.ts ===
var arrow1 = a => { };
>arrow1 : Symbol(arrow1, Decl(emitArrowFunctionAsIs.ts, 0, 3))
>a : Symbol(a, Decl(emitArrowFunctionAsIs.ts, 0, 12))
var arrow2 = (a) => { };
>arrow2 : Symbol(arrow2, Decl(emitArrowFunctionAsIs.ts, 1, 3))
>a : Symbol(a, Decl(emitArrowFunctionAsIs.ts, 1, 14))
var arrow3 = (a, b) => { };
>arrow3 : Symbol(arrow3, Decl(emitArrowFunctionAsIs.ts, 3, 3))
>a : Symbol(a, Decl(emitArrowFunctionAsIs.ts, 3, 14))
>b : Symbol(b, Decl(emitArrowFunctionAsIs.ts, 3, 16))