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

9 lines
134 B
JavaScript
Raw Normal View History

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