mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
7f5bfdcc00
swc_bundler: - Improve performance - Use `Vec<AHashSet<usize>>` instead of `AHashSet<(usize, usize)>`. - Fix statement orderings. (denoland/deno#9464) - Fix wrapped esm mixed with circular imports. (denoland/deno#8224) - Store content of wrapped esm at top level. (denoland/deno#8224)
5 lines
69 B
TypeScript
5 lines
69 B
TypeScript
const a = 1;
|
|
const b = a + 1;
|
|
const c = a + 2;
|
|
console.log(a, b, c);
|