Files
2026-08-27 21:09:14 +00:00

434 B

Input

function Component(props) {
  let x = makeObject();
  x.foo((x = makeObject()));
  return x;
}

Code

import { c as _c } from "react/compiler-runtime";
function Component(props) {
  const $ = _c(1);
  let x;
  if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
    x = makeObject();
    x.foo((x = makeObject()));
    $[0] = x;
  } else {
    x = $[0];
  }
  return x;
}