TypeScript/tests/baselines/reference/ArrowFunction4.types

9 lines
225 B
Plaintext
Raw Normal View History

2014-08-22 03:39:46 +02:00
=== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ArrowFunctions/ArrowFunction4.ts ===
2014-08-15 23:33:16 +02:00
var v = (a, b) => {
>v : (a: any, b: any) => void
2014-08-22 03:39:46 +02:00
>(a, b) => { } : (a: any, b: any) => void
>a : any
>b : any
2014-08-15 23:33:16 +02:00
};