JSTQL-JS-Transform/output_testing/1106error.mutate-captured-arg-separately.js

11 lines
No EOL
177 B
JavaScript

// Let's not support identifiers defined after use for now.
function component(a) {
let y = function () {
x |> m(%);
};
let x = {
a
};
x |> m(%);
return y;
}