Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/ssa-simple-phi.js
T

18 lines
186 B
JavaScript
Raw Normal View History

2026-08-27 21:09:14 +00:00
function foo() {
let y = 2;
if (y > 1) {
y = 1;
} else {
y = 2;
}
let x = y;
}
export const FIXTURE_ENTRYPOINT = {
fn: foo,
params: [],
isComponent: false,
};