TypeScript/tests/baselines/reference/namedFunctionExpressionCall.types
2014-08-15 14:37:48 -07:00

40 lines
626 B
Plaintext

=== tests/cases/compiler/namedFunctionExpressionCall.ts ===
var recurser = function foo() {
>recurser : any
>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() : any
>recurser : any
};
(function bar() {
>(function bar() {
bar();
}) : () => void
>function bar() {
bar();
} : () => void
>bar : () => void
bar();
>bar() : void
>bar : () => void
});