mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
8 lines
279 B
JavaScript
8 lines
279 B
JavaScript
|
import { _check_private_redeclaration } from "./_check_private_redeclaration.js";
|
||
|
|
||
|
export function _class_private_field_init(obj, privateMap, value) {
|
||
|
_check_private_redeclaration(obj, privateMap);
|
||
|
privateMap.set(obj, value);
|
||
|
}
|
||
|
export { _class_private_field_init as _ };
|