mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 18:12:59 -05:00

Additionaly, this no longer unnecessarily stores the source twice for file specifiers and fixes some sourcemap issues. Closes https://github.com/denoland/deno/issues/27284
9 lines
86 B
TypeScript
9 lines
86 B
TypeScript
function boom() {
|
|
throw new Error("boom!");
|
|
}
|
|
|
|
function foo() {
|
|
boom();
|
|
}
|
|
|
|
foo();
|