Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
576 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | function _classApplyDescriptorDestructureSet(receiver, descriptor) {
|
---|
| 2 | if (descriptor.set) {
|
---|
| 3 | if (!("__destrObj" in descriptor)) {
|
---|
| 4 | descriptor.__destrObj = {
|
---|
| 5 | set value(v) {
|
---|
| 6 | descriptor.set.call(receiver, v);
|
---|
| 7 | }
|
---|
| 8 |
|
---|
| 9 | };
|
---|
| 10 | }
|
---|
| 11 |
|
---|
| 12 | return descriptor.__destrObj;
|
---|
| 13 | } else {
|
---|
| 14 | if (!descriptor.writable) {
|
---|
| 15 | throw new TypeError("attempted to set read only private field");
|
---|
| 16 | }
|
---|
| 17 |
|
---|
| 18 | return descriptor;
|
---|
| 19 | }
|
---|
| 20 | }
|
---|
| 21 |
|
---|
| 22 | module.exports = _classApplyDescriptorDestructureSet;
|
---|
| 23 | module.exports["default"] = module.exports, module.exports.__esModule = true; |
---|
Note:
See
TracBrowser
for help on using the repository browser.