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

9 lines
No EOL
134 B
JavaScript

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