(current, workInProgress, nextChildren, renderLanes)
| 8914 | var SelectiveHydrationException = Error(formatProdErrorMessage(461)), |
| 8915 | didReceiveUpdate = !1; |
| 8916 | function reconcileChildren(current, workInProgress, nextChildren, renderLanes) { |
| 8917 | workInProgress.child = |
| 8918 | null === current |
| 8919 | ? mountChildFibers(workInProgress, null, nextChildren, renderLanes) |
| 8920 | : reconcileChildFibers( |
| 8921 | workInProgress, |
| 8922 | current.child, |
| 8923 | nextChildren, |
| 8924 | renderLanes |
| 8925 | ); |
| 8926 | } |
| 8927 | function updateForwardRef( |
| 8928 | current, |
| 8929 | workInProgress, |
no outgoing calls
no test coverage detected
searching dependent graphs…