TypeScript/tests/baselines/reference/parserX_ArrowFunction4.types

9 lines
233 B
Plaintext
Raw Normal View History

2014-08-28 01:58:31 +02:00
=== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ArrowFunctions/parserX_ArrowFunction4.ts ===
var v = (a, b) => {
>v : (a: any, b: any) => void
2014-08-28 01:58:31 +02:00
>(a, b) => { } : (a: any, b: any) => void
>a : any
>b : any
2014-08-28 01:58:31 +02:00
};