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

14 lines
352 B
Plaintext

=== tests/cases/compiler/commentOnSimpleArrowFunctionBody1.ts ===
function Foo(x: any)
>Foo : Symbol(Foo, Decl(commentOnSimpleArrowFunctionBody1.ts, 0, 0))
>x : Symbol(x, Decl(commentOnSimpleArrowFunctionBody1.ts, 0, 13))
{
}
Foo(() =>
>Foo : Symbol(Foo, Decl(commentOnSimpleArrowFunctionBody1.ts, 0, 0))
// do something
127);