Input
function component(a) {
let x = {a};
let y = {};
y.x = x['a'];
mutate(y);
return x;
}
Code
import { c as _c } from "react/compiler-runtime";
function component(a) {
const $ = _c(2);
let x;
if ($[0] !== a) {
x = { a };
const y = {};
y.x = x.a;
mutate(y);
$[0] = a;
$[1] = x;
} else {
x = $[1];
}
return x;
}