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
|
//// [constructorImplementationWithDefaultValues.ts]
class C {
constructor(x);
constructor(x = 1) {
var y = x;
}
}
class D<T> {
constructor(x);
constructor(x:T = null) {
var y = x;
}
}
class E<T extends Date> {
constructor(x);
constructor(x: T = null) {
var y = x;
}
}
//// [constructorImplementationWithDefaultValues.js]
var C = /** @class */ (function () {
function C(x) {
if (x === void 0) { x = 1; }
var y = x;
}
return C;
}());
var D = /** @class */ (function () {
function D(x) {
if (x === void 0) { x = null; }
var y = x;
}
return D;
}());
var E = /** @class */ (function () {
function E(x) {
if (x === void 0) { x = null; }
var y = x;
}
return E;
}());
|