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

7 lines
334 B
Plaintext

=== tests/cases/compiler/functionExpressionReturningItself.ts ===
var x = function somefn() { return somefn; };
>x : Symbol(x, Decl(functionExpressionReturningItself.ts, 0, 3))
>somefn : Symbol(somefn, Decl(functionExpressionReturningItself.ts, 0, 7))
>somefn : Symbol(somefn, Decl(functionExpressionReturningItself.ts, 0, 7))