* 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>
21 lines
453 B
JavaScript
21 lines
453 B
JavaScript
var B = /*#__PURE__*/babelHelpers.createClass(function B() {
|
|
"use strict";
|
|
});
|
|
|
|
var A = /*#__PURE__*/function (_B) {
|
|
"use strict";
|
|
|
|
babelHelpers.inherits(A, _B);
|
|
|
|
var _super = babelHelpers.createSuper(A);
|
|
|
|
function A(track) {
|
|
var _this;
|
|
|
|
if (track !== undefined) _this = _super.call(this, track);else _this = _super.call(this);
|
|
return babelHelpers.possibleConstructorReturn(_this);
|
|
}
|
|
|
|
return babelHelpers.createClass(A);
|
|
}(B);
|