Co-authored-by: Huáng Jùnliàng <jlhwung@gmail.com> Co-authored-by: Babel Bot <babel-bot@users.noreply.github.com>
40 lines
765 B
JavaScript
40 lines
765 B
JavaScript
"use strict";
|
|
|
|
let Base = /*#__PURE__*/function () {
|
|
function Base() {}
|
|
|
|
babelHelpers.createClass(Base, [{
|
|
key: "test",
|
|
set: function (v) {
|
|
throw new Error("gobbledygook");
|
|
}
|
|
}]);
|
|
return Base;
|
|
}();
|
|
|
|
let Obj = /*#__PURE__*/function (_Base) {
|
|
babelHelpers.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
|
|
// a gobbledygook error that is thrown
|
|
}).toThrowError(TypeError);
|