swc/tests/stacktrace/deno-10014/input/index.js
강동윤 1178686a4c
fix(bundler): Fix bundler (#1576)
swc_bundler:
 - Fix remapping of exports. (denoland/deno#9350)
2021-04-16 18:09:38 +00:00

11 lines
121 B
JavaScript

function a() {
t();
}
function t(x = false) {
if (x) {
throw new Error("Hello");
}
t(!0);
}
a();