20 lines
629 B
JavaScript
20 lines
629 B
JavaScript
var Test = /*#__PURE__*/function (_Foo) {
|
|
"use strict";
|
|
|
|
babelHelpers.inherits(Test, _Foo);
|
|
|
|
var _super = babelHelpers.createSuper(Test);
|
|
|
|
function Test() {
|
|
var _thisSuper, _thisSuper2, _this;
|
|
|
|
babelHelpers.classCallCheck(this, Test);
|
|
_this = _super.call(this);
|
|
babelHelpers.get((_thisSuper = babelHelpers.assertThisInitialized(_this), babelHelpers.getPrototypeOf(Test.prototype)), "test", _thisSuper);
|
|
babelHelpers.get((_thisSuper2 = babelHelpers.assertThisInitialized(_this), babelHelpers.getPrototypeOf(Test.prototype)), "test", _thisSuper2).whatever;
|
|
return _this;
|
|
}
|
|
|
|
return Test;
|
|
}(Foo);
|