JSTQL-JS-Transform/output_testing/624ssa-shadowing.js

11 lines
179 B
JavaScript
Raw Normal View History

function log() {}
function Foo(cond) {
let str = "";
if (cond) {
let str = "other test";
str |> log(%);
} else {
str = "fallthrough test";
}
str |> log(%);
}