TypeScript/tests/baselines/reference/namedFunctionExpressionCallErrors.js

32 lines
599 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [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
2014-07-13 01:04:16 +02:00
foo();
// recurser should be
2014-07-13 01:04:16 +02:00
recurser();
(function bar() {
// Error: foo should not be visible here either
2014-07-13 01:04:16 +02:00
foo();
});
// Error: bar should not be visible
2014-07-13 01:04:16 +02:00
bar();