You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
653 B
28 lines
653 B
4 years ago
|
function _classPrivateFieldDestructureSet(receiver, privateMap) {
|
||
|
if (!privateMap.has(receiver)) {
|
||
|
throw new TypeError("attempted to set private field on non-instance");
|
||
|
}
|
||
|
|
||
|
var descriptor = privateMap.get(receiver);
|
||
|
|
||
|
if (descriptor.set) {
|
||
|
if (!("__destrObj" in descriptor)) {
|
||
|
descriptor.__destrObj = {
|
||
|
set value(v) {
|
||
|
descriptor.set.call(receiver, v);
|
||
|
}
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
return descriptor.__destrObj;
|
||
|
} else {
|
||
|
if (!descriptor.writable) {
|
||
|
throw new TypeError("attempted to set read only private field");
|
||
|
}
|
||
|
|
||
|
return descriptor;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = _classPrivateFieldDestructureSet;
|