JSTQL-JS-Transform/output_testing/1154ssa-property-mutate-alias.js

9 lines
No EOL
134 B
JavaScript

function foo() {
const a = {};
const y = a;
const x = [];
y.x = x;
// y & x are aliased to a
a |> mutate(%);
return y;
}