TypeScript/tests/baselines/reference/commentsBeforeFunctionExpression1.types

13 lines
470 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/commentsBeforeFunctionExpression1.ts ===
var v = {
2015-04-13 23:01:57 +02:00
>v : { f: (a: any) => number; }, Symbol(v, Decl(commentsBeforeFunctionExpression1.ts, 0, 3))
2014-08-22 03:39:46 +02:00
>{ f: /**own f*/ (a) => 0} : { f: (a: any) => number; }
2014-08-15 23:33:16 +02:00
f: /**own f*/ (a) => 0
2015-04-13 23:01:57 +02:00
>f : (a: any) => number, Symbol(f, Decl(commentsBeforeFunctionExpression1.ts, 0, 9))
2014-08-15 23:33:16 +02:00
>(a) => 0 : (a: any) => number
2015-04-13 23:01:57 +02:00
>a : any, Symbol(a, Decl(commentsBeforeFunctionExpression1.ts, 1, 19))
2015-04-13 21:36:11 +02:00
>0 : number
2014-08-15 23:33:16 +02:00
}