mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
62d0cbcabb
swc_ecma_codegen: - Consider indentions while calculating starting point of source map entries. (denoland/deno#10014)
13 lines
187 B
TypeScript
13 lines
187 B
TypeScript
import "./errors.ts";
|
|
function a() {
|
|
t();
|
|
}
|
|
function t(param) {
|
|
var x = param === void 0 ? false : param;
|
|
if (x) {
|
|
throw new Error("Hello");
|
|
}
|
|
t(!0);
|
|
}
|
|
a();
|