JSTQL-JS-Transform/output_testing/1111error.hoisted-function-declaration.js

11 lines
No EOL
126 B
JavaScript

function component(a) {
let t = {
a
};
// hoisted call
t |> x(%);
function x(p) {
p.foo();
}
return t;
}