24 lines
832 B
JavaScript
24 lines
832 B
JavaScript
var Test =
|
|
/*#__PURE__*/
|
|
function (_Foo) {
|
|
babelHelpers.inherits(Test, _Foo);
|
|
|
|
function Test() {
|
|
var _this;
|
|
|
|
babelHelpers.classCallCheck(this, Test);
|
|
_this = babelHelpers.possibleConstructorReturn(this, (Test.__proto__ || Object.getPrototypeOf(Test)).call(this));
|
|
babelHelpers.get(Test.prototype.__proto__ || Object.getPrototypeOf(Test.prototype), "test", babelHelpers.assertThisInitialized(_this)).whatever();
|
|
babelHelpers.get(Test.prototype.__proto__ || Object.getPrototypeOf(Test.prototype), "test", babelHelpers.assertThisInitialized(_this)).call(_this);
|
|
return _this;
|
|
}
|
|
|
|
babelHelpers.createClass(Test, null, [{
|
|
key: "test",
|
|
value: function test() {
|
|
return babelHelpers.get(Test.__proto__ || Object.getPrototypeOf(Test), "wow", this).call(this);
|
|
}
|
|
}]);
|
|
return Test;
|
|
}(Foo);
|