TypeScript/tests/baselines/reference/commentsBeforeFunctionExpression1.symbols
2015-04-15 16:44:20 -07:00

10 lines
312 B
Plaintext

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