JSTQL-JS-Transform/output_testing/1009simple-alias.js

11 lines
141 B
JavaScript
Raw Normal View History

function mutate() {}
function foo() {
let a = {};
let b = {};
let c = {};
a = b;
b = c;
c = a;
a |> mutate(%, b);
return c;
}