📄 _class_apply_descriptor_set.cjs
/home/palash/git/site/node_modules/@swc/helpers/cjs/_class_apply_descriptor_set.cjs
Language: cjs • Lines: 15
"use strict";

function _class_apply_descriptor_set(receiver, descriptor, value) {
    if (descriptor.set) descriptor.set.call(receiver, value);
    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");
        }
        descriptor.value = value;
    }
}
exports._ = _class_apply_descriptor_set;