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

9 lines
248 B
Plaintext

=== tests/cases/compiler/functionCall2.ts ===
function foo():number{return 1};
>foo : Symbol(foo, Decl(functionCall2.ts, 0, 0))
var x = foo();
>x : Symbol(x, Decl(functionCall2.ts, 1, 3))
>foo : Symbol(foo, Decl(functionCall2.ts, 0, 0))