JSTQL-JS-Transform/output_testing/577capturing-func-alias-receiver-mutate.js

12 lines
No EOL
145 B
JavaScript

function component(a) {
let x = {
a
};
let y = {};
(function () {
let a = y;
a.x = x;
})();
y |> mutate(%);
return y;
}