* 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
28 lines
617 B
JavaScript
28 lines
617 B
JavaScript
var BaseController =
|
|
/*#__PURE__*/
|
|
function (_Chaplin$Controller) {
|
|
"use strict";
|
|
|
|
babelHelpers.inheritsLoose(BaseController, _Chaplin$Controller);
|
|
|
|
function BaseController() {
|
|
return _Chaplin$Controller.apply(this, arguments) || this;
|
|
}
|
|
|
|
return BaseController;
|
|
}(Chaplin.Controller);
|
|
|
|
var BaseController2 =
|
|
/*#__PURE__*/
|
|
function (_Chaplin$Controller$A) {
|
|
"use strict";
|
|
|
|
babelHelpers.inheritsLoose(BaseController2, _Chaplin$Controller$A);
|
|
|
|
function BaseController2() {
|
|
return _Chaplin$Controller$A.apply(this, arguments) || this;
|
|
}
|
|
|
|
return BaseController2;
|
|
}(Chaplin.Controller.Another);
|