* Revert "Move subclass inheritance to end (#7772)" This reverts commit f8ab9466d331871a90f458af40b14e8d831e0c29. * Only use getPrototypeOf if setPrototypeOf is implemented * Update fixtures * Helpers updates * Update fixtures * Fall back to getPrototypeOf * Update fixtures
25 lines
644 B
JavaScript
25 lines
644 B
JavaScript
var Outer = function Outer() {
|
|
"use strict";
|
|
|
|
babelHelpers.classCallCheck(this, Outer);
|
|
Object.defineProperty(this, _outer, {
|
|
writable: true,
|
|
value: void 0
|
|
});
|
|
|
|
var Test =
|
|
/*#__PURE__*/
|
|
function (_babelHelpers$classPr) {
|
|
babelHelpers.inherits(Test, _babelHelpers$classPr);
|
|
|
|
function Test() {
|
|
babelHelpers.classCallCheck(this, Test);
|
|
return babelHelpers.possibleConstructorReturn(this, babelHelpers.getPrototypeOf(Test).apply(this, arguments));
|
|
}
|
|
|
|
return Test;
|
|
}(babelHelpers.classPrivateFieldLooseBase(this, _outer)[_outer]);
|
|
};
|
|
|
|
var _outer = babelHelpers.classPrivateFieldLooseKey("outer");
|