7 lines
293 B
Plaintext
7 lines
293 B
Plaintext
export function _class_check_private_static_field_descriptor(descriptor, action) {
|
|
if (descriptor === undefined) {
|
|
throw new TypeError("attempted to " + action + " private static field before its declaration");
|
|
}
|
|
}
|
|
export { _class_check_private_static_field_descriptor as _ };
|