Files
react/compiler/crates/react_hermes_parser/tests/fixtures/ssa-nested-partial-phi.js
2024-04-02 16:49:31 -07:00

11 lines
156 B
JavaScript

function foo(a, b, c) {
let x = a;
if (b) {
if (c) {
x = c;
}
// TODO: move the return to the end of the function
return x;
}
}