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
|
//// [noImplicitAnyDestructuringParameterDeclaration.ts]
function f1([a], {b}, c, d) { // error
}
function f2([a = undefined], {b = null}, c = undefined, d = null) { // error
}
function f3([a]: [any], {b}: { b: any }, c: any, d: any) {
}
function f4({b}: { b }, x: { b }) { // error in type instead
}
function f5([a1] = [undefined], {b1} = { b1: null }, c1 = undefined, d1 = null) { // error
}
//// [noImplicitAnyDestructuringParameterDeclaration.js]
function f1(_a, _b, c, d) {
var a = _a[0];
var b = _b.b;
}
function f2(_a, _b, c, d) {
var _c = _a[0], a = _c === void 0 ? undefined : _c;
var _d = _b.b, b = _d === void 0 ? null : _d;
if (c === void 0) { c = undefined; }
if (d === void 0) { d = null; }
}
function f3(_a, _b, c, d) {
var a = _a[0];
var b = _b.b;
}
function f4(_a, x) {
var b = _a.b;
}
function f5(_a, _b, c1, d1) {
var a1 = (_a === void 0 ? [undefined] : _a)[0];
var b1 = (_b === void 0 ? { b1: null } : _b).b1;
if (c1 === void 0) { c1 = undefined; }
if (d1 === void 0) { d1 = null; }
}
|