mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 23:27:56 +03:00
23aebacade
swc_bundler: - Use two-context system properly. - Remove old logic. - keywords: Handle assignment pattern property. - keywords: Handle shorthand property. - keywords: Handle identifiers in declarations. swc_ecma_transforms_typescript: - Do not remove import if there's non-type usage. (Related to denoland/deno#8978) swc_ecma_transforms_optimization: - dce: Handle new expression correctly.
11 lines
115 B
TypeScript
11 lines
115 B
TypeScript
function a() {
|
|
console.log("a");
|
|
}
|
|
const a1 = a;
|
|
const a2 = a1;
|
|
const a3 = a2;
|
|
function b() {
|
|
a3();
|
|
}
|
|
b();
|