TypeScript/tests/baselines/reference/inheritanceMemberFuncOverridingAccessor.js

48 lines
985 B
TypeScript

//// [inheritanceMemberFuncOverridingAccessor.ts]
class a {
get x() {
return "20";
}
set x(aValue: string) {
}
}
class b extends a {
x() {
return "20";
}
}
//// [inheritanceMemberFuncOverridingAccessor.js]
var __extends = this.__extends || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};
var a = (function () {
function a() {
}
Object.defineProperty(a.prototype, "x", {
get: function () {
return "20";
},
set: function (aValue) {
},
enumerable: true,
configurable: true
});
return a;
})();
var b = (function (_super) {
__extends(b, _super);
function b() {
_super.apply(this, arguments);
}
b.prototype.x = function () {
return "20";
};
return b;
})(a);