* 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
17 lines
344 B
JavaScript
17 lines
344 B
JavaScript
var x = {
|
|
Foo:
|
|
/*#__PURE__*/
|
|
function (_Foo) {
|
|
"use strict";
|
|
|
|
babelHelpers.inherits(_class, _Foo);
|
|
|
|
function _class() {
|
|
babelHelpers.classCallCheck(this, _class);
|
|
return babelHelpers.possibleConstructorReturn(this, babelHelpers.getPrototypeOf(_class).apply(this, arguments));
|
|
}
|
|
|
|
return _class;
|
|
}(Foo)
|
|
};
|