facebook/react
compiler/
crates/
react_hermes_parser/
tests/
fixtures/
constant-propagation-while.js
function foo() { let x = 100; let y = 0; while (x < 10) { y += 1; } return y; }