(suspenseContext, current, workInProgress)
| 21302 | }; |
| 21303 | |
| 21304 | function shouldRemainOnFallback(suspenseContext, current, workInProgress) { |
| 21305 | // If the context is telling us that we should show a fallback, and we're not |
| 21306 | // already showing content, then we should show the fallback instead. |
| 21307 | return hasSuspenseContext(suspenseContext, ForceSuspenseFallback) && (current === null || current.memoizedState !== null); |
| 21308 | } |
| 21309 | |
| 21310 | function updateSuspenseComponent(current, workInProgress, renderExpirationTime) { |
| 21311 | var mode = workInProgress.mode; |
no test coverage detected