JSTQL-JS-Transform/output_testing/965overlapping-scopes-interleaved-by-terminal.js

12 lines
203 B
JavaScript
Raw Normal View History

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