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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
//// [errorSuperCalls.ts]
//super call in class constructor with no base type
class NoBase {
constructor() {
super();
}
//super call in class member function with no base type
fn() {
super();
}
//super call in class accessor (get and set) with no base type
get foo() {
super();
return null;
}
set foo(v) {
super();
}
//super call in class member initializer with no base type
p = super();
//super call in static class member function with no base type
static fn() {
super();
}
//super call in static class member initializer with no base type
static k = super();
//super call in static class accessor (get and set) with no base type
static get q() {
super();
return null;
}
static set q(n) {
super();
}
}
class Base<T> { private n: T; }
class Derived<T> extends Base<T> {
//super call with type arguments
constructor() {
super<string>();
super();
}
}
class OtherBase {
private n: string;
}
class OtherDerived extends OtherBase {
//super call in class member initializer of derived type
t = super();
fn() {
//super call in class member function of derived type
super();
}
//super call in class accessor (get and set) of derived type
get foo() {
super();
return null;
}
set foo(n) {
super();
}
}
//// [errorSuperCalls.js]
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
//super call in class constructor with no base type
var NoBase = /** @class */ (function () {
function NoBase() {
_this = _super.call(this) || this;
//super call in class member initializer with no base type
this.p = _this = _super.call(this) || this;
}
//super call in class member function with no base type
NoBase.prototype.fn = function () {
_this = _super.call(this) || this;
};
Object.defineProperty(NoBase.prototype, "foo", {
//super call in class accessor (get and set) with no base type
get: function () {
_this = _super.call(this) || this;
return null;
},
set: function (v) {
_this = _super.call(this) || this;
},
enumerable: true,
configurable: true
});
//super call in static class member function with no base type
NoBase.fn = function () {
_this = _super.call(this) || this;
};
Object.defineProperty(NoBase, "q", {
//super call in static class accessor (get and set) with no base type
get: function () {
_this = _super.call(this) || this;
return null;
},
set: function (n) {
_this = _super.call(this) || this;
},
enumerable: true,
configurable: true
});
//super call in static class member initializer with no base type
NoBase.k = _this = _super.call(this) || this;
return NoBase;
}());
var Base = /** @class */ (function () {
function Base() {
}
return Base;
}());
var Derived = /** @class */ (function (_super) {
__extends(Derived, _super);
//super call with type arguments
function Derived() {
var _this = this;
_super.prototype..call(_this);
_this = _super.call(this) || this;
return _this;
}
return Derived;
}(Base));
var OtherBase = /** @class */ (function () {
function OtherBase() {
}
return OtherBase;
}());
var OtherDerived = /** @class */ (function (_super) {
__extends(OtherDerived, _super);
function OtherDerived() {
var _this = _super !== null && _super.apply(this, arguments) || this;
//super call in class member initializer of derived type
_this.t = _this = _super.call(this) || this;
return _this;
}
OtherDerived.prototype.fn = function () {
//super call in class member function of derived type
_this = _super.call(this) || this;
};
Object.defineProperty(OtherDerived.prototype, "foo", {
//super call in class accessor (get and set) of derived type
get: function () {
_this = _super.call(this) || this;
return null;
},
set: function (n) {
_this = _super.call(this) || this;
},
enumerable: true,
configurable: true
});
return OtherDerived;
}(OtherBase));
|