TypeScript/tests/baselines/reference/ArrowFunction4.types

9 lines
352 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) => {
2015-04-13 23:01:57 +02:00
>v : (a: any, b: any) => void, Symbol(v, Decl(ArrowFunction4.ts, 0, 3))
2014-08-22 03:39:46 +02:00
>(a, b) => { } : (a: any, b: any) => void
2015-04-13 23:01:57 +02:00
>a : any, Symbol(a, Decl(ArrowFunction4.ts, 0, 9))
>b : any, Symbol(b, Decl(ArrowFunction4.ts, 0, 11))
2014-08-15 23:33:16 +02:00
};