2023-10-03 11:14:36 +08:00
|
|
|
export default function _classCheckPrivateStaticFieldDescriptor(descriptor, action) {
|
|
|
|
if (descriptor === undefined) {
|
|
|
|
throw new TypeError("attempted to " + action + " private static field before its declaration");
|
|
|
|
}
|
2023-09-25 15:58:56 +08:00
|
|
|
}
|