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

11 lines
126 B
JavaScript
Raw Normal View History

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