Co-authored-by: Huáng Jùnliàng <jlhwung@gmail.com> Co-authored-by: Babel Bot <babel-bot@users.noreply.github.com>
39 lines
689 B
JavaScript
39 lines
689 B
JavaScript
"use strict";
|
|
|
|
let Base = /*#__PURE__*/function () {
|
|
function Base() {}
|
|
|
|
babelHelpers.createClass(Base, [{
|
|
key: "test",
|
|
set: function (v) {
|
|
throw new Error("called");
|
|
}
|
|
}]);
|
|
return Base;
|
|
}();
|
|
|
|
let Obj = /*#__PURE__*/function (_Base) {
|
|
babelHelpers.inheritsLoose(Obj, _Base);
|
|
|
|
function Obj() {
|
|
return _Base.apply(this, arguments) || this;
|
|
}
|
|
|
|
var _proto = Obj.prototype;
|
|
|
|
_proto.get = function get() {
|
|
return _Base.prototype.test;
|
|
};
|
|
|
|
return Obj;
|
|
}(Base);
|
|
|
|
Object.defineProperty(Obj.prototype, 'test', {
|
|
value: 2,
|
|
writable: true,
|
|
configurable: true
|
|
});
|
|
const obj = new Obj();
|
|
expect(obj.test).toBe(2);
|
|
expect(obj.get()).toBeUndefined();
|