* Revert "Move subclass inheritance to end (#7772)"
This reverts commit f8ab9466d3.
* Only use getPrototypeOf if setPrototypeOf is implemented
* Update fixtures
* Helpers updates
* Update fixtures
* Fall back to getPrototypeOf
* Update fixtures
21 lines
526 B
JavaScript
21 lines
526 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));
|
|
babelHelpers.defineProperty(babelHelpers.assertThisInitialized(babelHelpers.assertThisInitialized(_this)), "scopedFunctionWithThis", function () {
|
|
_this.name = {};
|
|
});
|
|
return _this;
|
|
}
|
|
|
|
return Child;
|
|
}(Parent);
|