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

12 lines
148 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;
}