(current, workInProgress, nextChildren, renderLanes, recoverableError)
| 19897 | } |
| 19898 | |
| 19899 | function mountHostRootWithoutHydrating(current, workInProgress, nextChildren, renderLanes, recoverableError) { |
| 19900 | // Revert to client rendering. |
| 19901 | resetHydrationState(); |
| 19902 | queueHydrationError(recoverableError); |
| 19903 | workInProgress.flags |= ForceClientRender; |
| 19904 | reconcileChildren(current, workInProgress, nextChildren, renderLanes); |
| 19905 | return workInProgress.child; |
| 19906 | } |
| 19907 | |
| 19908 | function updateHostComponent(current, workInProgress, renderLanes) { |
| 19909 | pushHostContext(workInProgress); |
no test coverage detected
searching dependent graphs…