* initial code 2 fix the issue #2025 * Mark class prototype as read-only * Update fixtures * Fix failure * Update Babel 8 fixtures * Disable in loose mode * Update fixtures Co-authored-by: Nicolò Ribaudo <nicolo.ribaudo@gmail.com>
20 lines
655 B
JavaScript
20 lines
655 B
JavaScript
var Test = /*#__PURE__*/function (_Foo) {
|
|
"use strict";
|
|
|
|
babelHelpers.inherits(Test, _Foo);
|
|
|
|
var _super = babelHelpers.createSuper(Test);
|
|
|
|
function Test() {
|
|
var _thisSuper, _thisSuper2, _this;
|
|
|
|
babelHelpers.classCallCheck(this, Test);
|
|
_this = _super.call(this);
|
|
babelHelpers.get((_thisSuper = babelHelpers.assertThisInitialized(_this), babelHelpers.getPrototypeOf(Test.prototype)), "test", _thisSuper);
|
|
babelHelpers.get((_thisSuper2 = babelHelpers.assertThisInitialized(_this), babelHelpers.getPrototypeOf(Test.prototype)), "test", _thisSuper2).whatever;
|
|
return _this;
|
|
}
|
|
|
|
return babelHelpers.createClass(Test);
|
|
}(Foo);
|