TypeScript/tests/baselines/reference/functionCall1.symbols

9 lines
245 B
Plaintext
Raw Normal View History

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