Files
react/compiler/crates/react_hermes_parser/tests/fixtures/error.hoisted-function-declaration.js
2024-04-02 16:49:31 -07:00

9 lines
114 B
JavaScript

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