(suspenseContext, current, workInProgress)
| 17742 | }; |
| 17743 | |
| 17744 | function shouldRemainOnFallback(suspenseContext, current, workInProgress) { |
| 17745 | // If the context is telling us that we should show a fallback, and we're not |
| 17746 | // already showing content, then we should show the fallback instead. |
| 17747 | return hasSuspenseContext(suspenseContext, ForceSuspenseFallback) && (current === null || current.memoizedState !== null); |
| 17748 | } |
| 17749 | |
| 17750 | function updateSuspenseComponent(current, workInProgress, renderExpirationTime) { |
| 17751 | var mode = workInProgress.mode; |
no test coverage detected