mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
a13a78e3fe
**BREAKING CHANGE:** Breaking changes for `@swc/helpers`. A new major version `0.5.0` is required. **Related issue:** - Closes https://github.com/swc-project/swc/issues/7157
12 lines
670 B
JavaScript
12 lines
670 B
JavaScript
import { _class_apply_descriptor_destructure } from "./_class_apply_descriptor_destructure.js";
|
|
import { _class_check_private_static_access } from "./_class_check_private_static_access.js";
|
|
import { _class_check_private_static_field_descriptor } from "./_class_check_private_static_field_descriptor.js";
|
|
|
|
export function _class_static_private_field_destructure(receiver, classConstructor, descriptor) {
|
|
_class_check_private_static_access(receiver, classConstructor);
|
|
_class_check_private_static_field_descriptor(descriptor, "set");
|
|
|
|
return _class_apply_descriptor_destructure(receiver, descriptor);
|
|
}
|
|
export { _class_static_private_field_destructure as _ };
|