* 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>
18 lines
410 B
JavaScript
18 lines
410 B
JavaScript
var _self = /*#__PURE__*/babelHelpers.classPrivateFieldLooseKey("self");
|
|
|
|
var _getA = /*#__PURE__*/babelHelpers.classPrivateFieldLooseKey("getA");
|
|
|
|
var A = /*#__PURE__*/babelHelpers.createClass(function A() {
|
|
"use strict";
|
|
|
|
babelHelpers.classCallCheck(this, A);
|
|
});
|
|
Object.defineProperty(A, _self, {
|
|
writable: true,
|
|
value: A
|
|
});
|
|
Object.defineProperty(A, _getA, {
|
|
writable: true,
|
|
value: () => A
|
|
});
|