TypeScript/tests/baselines/reference/parserX_ArrowFunction4.types

9 lines
384 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) => {
2015-04-13 23:01:57 +02:00
>v : (a: any, b: any) => void, Symbol(v, Decl(parserX_ArrowFunction4.ts, 0, 3))
2014-08-28 01:58:31 +02:00
>(a, b) => { } : (a: any, b: any) => void
2015-04-13 23:01:57 +02:00
>a : any, Symbol(a, Decl(parserX_ArrowFunction4.ts, 0, 9))
>b : any, Symbol(b, Decl(parserX_ArrowFunction4.ts, 0, 11))
2014-08-28 01:58:31 +02:00
};