facebook/react
compiler/
crates/
react_hermes_parser/
tests/
fixtures/
ssa-complex-multiple-if.js
function foo() { let x = 1; let y = 2; if (y === 2) { x = 3; } if (y === 3) { x = 5; } y = x; }