JSTQL-JS-Transform/output_testing/931overlapping-scopes-while.js

13 lines
209 B
JavaScript
Raw Normal View History

function foo(a, b, c) {
let x = [];
let y = [];
while (c) {
b |> y.push(%);
a |> x.push(%);
}
}
export const FIXTURE_ENTRYPOINT = {
fn: foo,
params: ["TodoAdd"],
isComponent: "TodoAdd"
};