bpms_site/.svn/pristine/18/18d1eb8d0e50fd0b181362689f01816a618ac293.svn-base
2025-11-02 16:38:49 +03:30

26 lines
803 B
Plaintext

"use strict";
exports._ = exports._class_apply_descriptor_destructure = _class_apply_descriptor_destructure;
function _class_apply_descriptor_destructure(receiver, descriptor) {
if (descriptor.set) {
if (!("__destrObj" in descriptor)) {
descriptor.__destrObj = {
set value(v) {
descriptor.set.call(receiver, v);
}
};
}
return descriptor.__destrObj;
} else {
if (!descriptor.writable) {
// This should only throw in strict mode, but class bodies are
// always strict and private fields can only be used inside
// class bodies.
throw new TypeError("attempted to set read only private field");
}
return descriptor;
}
}