Files
react/compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-within-block.js
2024-04-02 16:49:31 -07:00

11 lines
123 B
JavaScript

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