Super property eval order (#11480)

This commit is contained in:
Justin Ridgewell
2020-04-25 12:34:07 -04:00
committed by GitHub
parent 2e4f18ac92
commit 0bbf2da568
19 changed files with 93 additions and 63 deletions

View File

@@ -6,11 +6,11 @@ var Foo = /*#__PURE__*/function (_Bar) {
var _super = babelHelpers.createSuper(Foo);
function Foo() {
var _this;
var _thisSuper, _this;
babelHelpers.classCallCheck(this, Foo);
var t = () => babelHelpers.get(babelHelpers.getPrototypeOf(Foo.prototype), "test", babelHelpers.assertThisInitialized(_this)).call(babelHelpers.assertThisInitialized(_this));
var t = () => babelHelpers.get((_thisSuper = babelHelpers.assertThisInitialized(_this), babelHelpers.getPrototypeOf(Foo.prototype)), "test", _thisSuper).call(_thisSuper);
return _this = _super.call(this);
}