{"record":{"id":"c3355d96064b07f5","repo":"facebook/react","slug":"153","errorCode":"153","errorMessage":"Resuming work not yet implemented.","messagePattern":"Resuming work not yet implemented\\.","errorType":"exception","errorClass":"Error","httpStatus":null,"severity":"error","filePath":"packages/react-reconciler/src/ReactChildFiber.js","lineNumber":2125,"sourceCode":"  return reconcileChildFibers;\n}\n\nexport const reconcileChildFibers: ChildReconciler =\n  createChildReconciler(true);\nexport const mountChildFibers: ChildReconciler = createChildReconciler(false);\n\nexport function resetChildReconcilerOnUnwind(): void {\n  // On unwind, clear any pending thenables that were used.\n  thenableState = null;\n  thenableIndexCounter = 0;\n}\n\nexport function cloneChildFibers(\n  current: Fiber | null,\n  workInProgress: Fiber,\n): void {\n  if (current !== null && workInProgress.child !== current.child) {\n    throw new Error('Resuming work not yet implemented.');\n  }\n\n  if (workInProgress.child === null) {\n    return;\n  }\n\n  let currentChild = workInProgress.child;\n  let newChild = createWorkInProgress(currentChild, currentChild.pendingProps);\n  workInProgress.child = newChild;\n\n  newChild.return = workInProgress;\n  while (currentChild.sibling !== null) {\n    currentChild = currentChild.sibling;\n    newChild = newChild.sibling = createWorkInProgress(\n      currentChild,\n      currentChild.pendingProps,\n    );\n    newChild.return = workInProgress;","sourceCodeStart":2107,"sourceCodeEnd":2143,"githubUrl":"https://github.com/facebook/react/blob/eafeac097ba51e1eab809c07102126bd5f8e5425/packages/react-reconciler/src/ReactChildFiber.js#L2107-L2143","documentation":"Error \"Resuming work not yet implemented.\" thrown in facebook/react.","triggerScenarios":"Thrown at packages/react-reconciler/src/ReactChildFiber.js:2125 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"eafeac097ba51e1eab809c07102126bd5f8e5425","analyzedAt":"2026-08-21T22:01:08.818Z","schemaVersion":2},"datasetVersion":"2026-08-21T23:17:16.201Z"}