(finishedRoot, finishedWork)
| 11682 | } |
| 11683 | } |
| 11684 | function commitSuspenseHydrationCallbacks(finishedRoot, finishedWork) { |
| 11685 | if ( |
| 11686 | null === finishedWork.memoizedState && |
| 11687 | ((finishedRoot = finishedWork.alternate), |
| 11688 | null !== finishedRoot && |
| 11689 | ((finishedRoot = finishedRoot.memoizedState), |
| 11690 | null !== finishedRoot && |
| 11691 | ((finishedRoot = finishedRoot.dehydrated), null !== finishedRoot))) |
| 11692 | ) |
| 11693 | try { |
| 11694 | retryIfBlockedOn(finishedRoot); |
| 11695 | } catch (error) { |
| 11696 | captureCommitPhaseError(finishedWork, finishedWork.return, error); |
| 11697 | } |
| 11698 | } |
| 11699 | function getRetryCache(finishedWork) { |
| 11700 | switch (finishedWork.tag) { |
| 11701 | case 13: |
no test coverage detected
searching dependent graphs…