TypeScript/tests/baselines/reference/namedFunctionExpressionCall.types
2014-09-05 13:05:36 -07:00

30 lines
631 B
Plaintext

=== tests/cases/compiler/namedFunctionExpressionCall.ts ===
var recurser = function foo() {
>recurser : () => void
>function foo() { // using the local name foo(); // using the globally visible name recurser();} : () => void
>foo : () => void
// using the local name
foo();
>foo() : void
>foo : () => void
// using the globally visible name
recurser();
>recurser() : void
>recurser : () => void
};
(function bar() {
>(function bar() { bar();}) : () => void
>function bar() { bar();} : () => void
>bar : () => void
bar();
>bar() : void
>bar : () => void
});