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

12 lines
No EOL
148 B
JavaScript

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