22 lines
489 B
JavaScript
22 lines
489 B
JavaScript
class Cl {
|
|
constructor() {
|
|
babelHelpers.classStaticPrivateFieldSpecSet(Cl, Cl, _privateFieldValue, 1);
|
|
[babelHelpers.classStaticPrivateFieldDestructureSet(Cl, Cl, _privateFieldValue).value] = [1];
|
|
}
|
|
|
|
}
|
|
|
|
var _get_privateFieldValue = function () {
|
|
return babelHelpers.classStaticPrivateFieldSpecGet(this, Cl, _privateField);
|
|
};
|
|
|
|
var _privateFieldValue = {
|
|
get: _get_privateFieldValue,
|
|
set: void 0
|
|
};
|
|
var _privateField = {
|
|
writable: true,
|
|
value: 0
|
|
};
|
|
var cl = new Cl();
|