TypeScript/tests/baselines/reference/parserX_ArrowFunction4.types
2015-04-13 14:29:37 -07:00

9 lines
384 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ArrowFunctions/parserX_ArrowFunction4.ts ===
var v = (a, b) => {
>v : (a: any, b: any) => void, Symbol(v, Decl(parserX_ArrowFunction4.ts, 0, 3))
>(a, b) => { } : (a: any, b: any) => void
>a : any, Symbol(a, Decl(parserX_ArrowFunction4.ts, 0, 9))
>b : any, Symbol(b, Decl(parserX_ArrowFunction4.ts, 0, 11))
};