(finishedWork)
| 20750 | } |
| 20751 | |
| 20752 | function commitSuspenseComponent(finishedWork) { |
| 20753 | var newState = finishedWork.memoizedState; |
| 20754 | var newDidTimeout; |
| 20755 | var primaryChildParent = finishedWork; |
| 20756 | |
| 20757 | if (newState === null) { |
| 20758 | newDidTimeout = false; |
| 20759 | } else { |
| 20760 | newDidTimeout = true; |
| 20761 | primaryChildParent = finishedWork.child; |
| 20762 | markCommitTimeOfFallback(); |
| 20763 | } |
| 20764 | |
| 20765 | if ( primaryChildParent !== null) { |
| 20766 | hideOrUnhideAllChildren(primaryChildParent, newDidTimeout); |
| 20767 | } |
| 20768 | } |
| 20769 | |
| 20770 | function commitSuspenseHydrationCallbacks(finishedRoot, finishedWork) { |
| 20771 |
no test coverage detected