JSTQL-JS-Transform/output_testing/474ssa-renaming.js

10 lines
151 B
JavaScript
Raw Normal View History

function foo(props) {
let x = [];
props.bar |> x.push(%);
if (props.cond) {
x = {};
x = [];
props.foo |> x.push(%);
}
return x;
}