Сковорода Никита Андреевич 9907bd86c9
Avoid hitting __proto__ in _inheritsLoose (#12693)
2021-01-26 20:15:41 +01:00

34 lines
936 B
JavaScript

"use strict";
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
let Base = function Base() {};
let Obj = /*#__PURE__*/function (_Base) {
_inheritsLoose(Obj, _Base);
function Obj() {
return _Base.apply(this, arguments) || this;
}
var _proto = Obj.prototype;
_proto.call = function call() {
return _Base.prototype.test.call(this);
};
_proto.test = function test() {
throw new Error("gobbledygook");
};
return Obj;
}(Base);
const obj = new Obj();
expect(() => {
obj.call(); // Asser that this throws, but that it's not
// Obj.p.test's error that is thrown
}).toThrowError(TypeError);