JSTQL-JS-Transform/output_testing/517repro-reassign-to-variable-without-mutable-range.js

11 lines
166 B
JavaScript
Raw Normal View History

// @debug
function Component(a, b) {
let x = [];
let y = [];
let z = a |> foo(%);
if (FLAG) {
x = z |> bar(%);
y = b |> baz(%);
}
return [x, y];
}