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

15 lines
249 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;
}
export const FIXTURE_ENTRYPOINT = {
fn: foo,
params: ["TodoAdd"],
isComponent: "TodoAdd"
};