mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
1178686a4c
swc_bundler: - Fix remapping of exports. (denoland/deno#9350)
11 lines
121 B
JavaScript
11 lines
121 B
JavaScript
function a() {
|
|
t();
|
|
}
|
|
|
|
function t(x = false) {
|
|
if (x) {
|
|
throw new Error("Hello");
|
|
}
|
|
t(!0);
|
|
}
|
|
a(); |