TypeScript/tests/baselines/reference/namedFunctionExpressionCallErrors.js
2014-08-15 15:49:09 -07:00

32 lines
599 B
TypeScript

//// [namedFunctionExpressionCallErrors.ts]
var recurser = function foo() {
};
// Error: foo should not be visible here
foo();
// recurser should be
recurser();
(function bar() {
// Error: foo should not be visible here either
foo();
});
// Error: bar should not be visible
bar();
//// [namedFunctionExpressionCallErrors.js]
var recurser = function foo() {
};
// Error: foo should not be visible here
foo();
// recurser should be
recurser();
(function bar() {
// Error: foo should not be visible here either
foo();
});
// Error: bar should not be visible
bar();