mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 03:01:48 +03:00
17f17e82e6
swc_bundler: - Add a testing system for constant inliner. swc_ecma_transforms_optimization: - const_propagation: Handle export specifiers. - const_propagation: Handle inlining of variables whose initializer is inlined. - dce: Allow dropping identifiers used in `exported` part of export specifiers.
5 lines
64 B
TypeScript
5 lines
64 B
TypeScript
function square(a) {
|
|
return a * a;
|
|
}
|
|
console.log(square());
|