JSTQL-JS-Transform/output_testing/554capturing-nested-member-expr-in-nested-func.js

13 lines
166 B
JavaScript
Raw Normal View History

function component(a) {
let z = {
a: {
a
}
};
let x = function () {
(function () {
z.a.a |> console.log(%);
})();
};
return x;
}