JSTQL-JS-Transform/output_testing/988error.bug-repro-trycatch-nested-overlapping-range.js

11 lines
164 B
JavaScript
Raw Normal View History

function Foo() {
try {
let thing = null;
if (cond) {
thing = makeObject();
}
if (otherCond) {
thing |> mutate(%);
}
} catch {}
}