facebook/react
compiler/
crates/
react_hermes_parser/
tests/
fixtures/
capturing-variable-in-nested-block.js
function component(a) { let z = { a }; let x = function () { { console.log(z); } }; return x; }