JSTQL-JS-Transform/output_testing/459alias-capture-in-method-receiver.js

8 lines
159 B
JavaScript
Raw Normal View History

function Component() {
// a's mutable range should be limited
// the following line
let a = someObj();
let x = [];
a |> x.push(%);
return [x, a];
}