1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
tests/cases/compiler/shadowedReservedCompilerDeclarationsWithNoEmit.ts(23,13): error TS1215: Invalid use of 'arguments'. Modules are automatically in strict mode.
==== tests/cases/compiler/shadowedReservedCompilerDeclarationsWithNoEmit.ts (1 errors) ====
// Shadowed captured this and super
class Base { }
class C extends Base {
constructor() {
super();
}
foo() {
let _this = this;
() => {
_this;
};
}
bar() {
let _super = this;
}
}
/// shadowed arguments
function f1(arguments, ...a) {
~~~~~~~~~
!!! error TS1215: Invalid use of 'arguments'. Modules are automatically in strict mode.
}
class C2 extends Base {
constructor() {
super();
var _newTarget = "";
var t = new.target;
var y = _newTarget;
}
}
// Shadowed Promise
var Promise = null;
async function f4() {
return 0;
}
// shadowed require
var require = 0;
// shadowed exports
var exports = 0;
export { };
|