mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
5e1003ec4c
swc_ecma_transforms_base: - `hygiene`: Support usage-def conflict where def comes first. (#2297)
8 lines
147 B
JavaScript
8 lines
147 B
JavaScript
import { bar } from './Bar';
|
|
|
|
const makeX = (props) => {
|
|
const _bar = props.bar;
|
|
const { list } = _bar;
|
|
|
|
return list.map(() => bar);
|
|
}; |