mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
2b918b0c3d
swc_ecma_transforms_compat: - `class_properties`: Do not create iife if possible. (#1660)
12 lines
153 B
TypeScript
12 lines
153 B
TypeScript
namespace X {
|
|
export namespace Z {
|
|
export const foo = 0
|
|
}
|
|
}
|
|
|
|
namespace Y {
|
|
export namespace Z {
|
|
export const bar = 1
|
|
}
|
|
}
|