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

12 lines
145 B
JavaScript
Raw Normal View History

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