TypeScript/tests/baselines/reference/commentsBeforeFunctionExpression1.types
2015-04-13 14:29:37 -07:00

13 lines
470 B
Plaintext

=== tests/cases/compiler/commentsBeforeFunctionExpression1.ts ===
var v = {
>v : { f: (a: any) => number; }, Symbol(v, Decl(commentsBeforeFunctionExpression1.ts, 0, 3))
>{ f: /**own f*/ (a) => 0} : { f: (a: any) => number; }
f: /**own f*/ (a) => 0
>f : (a: any) => number, Symbol(f, Decl(commentsBeforeFunctionExpression1.ts, 0, 9))
>(a) => 0 : (a: any) => number
>a : any, Symbol(a, Decl(commentsBeforeFunctionExpression1.ts, 1, 19))
>0 : number
}