26 lines
632 B
JavaScript
26 lines
632 B
JavaScript
var Child =
|
|
/*#__PURE__*/
|
|
function (_Parent) {
|
|
"use strict";
|
|
|
|
babelHelpers.inherits(Child, _Parent);
|
|
|
|
function Child() {
|
|
var _this;
|
|
|
|
babelHelpers.classCallCheck(this, Child);
|
|
_this = babelHelpers.possibleConstructorReturn(this, babelHelpers.getPrototypeOf(Child).call(this));
|
|
Object.defineProperty(babelHelpers.assertThisInitialized(_this), _scopedFunctionWithThis, {
|
|
writable: true,
|
|
value: function value() {
|
|
_this.name = {};
|
|
}
|
|
});
|
|
return _this;
|
|
}
|
|
|
|
return Child;
|
|
}(Parent);
|
|
|
|
var _scopedFunctionWithThis = babelHelpers.classPrivateFieldLooseKey("scopedFunctionWithThis");
|