(workInProgress, primaryChildren)
| 9830 | return renderLanes; |
| 9831 | } |
| 9832 | function mountSuspensePrimaryChildren(workInProgress, primaryChildren) { |
| 9833 | primaryChildren = mountWorkInProgressOffscreenFiber( |
| 9834 | { mode: "visible", children: primaryChildren }, |
| 9835 | workInProgress.mode |
| 9836 | ); |
| 9837 | primaryChildren.return = workInProgress; |
| 9838 | return (workInProgress.child = primaryChildren); |
| 9839 | } |
| 9840 | function mountWorkInProgressOffscreenFiber(offscreenProps, mode) { |
| 9841 | return createFiberFromOffscreen(offscreenProps, mode, 0, null); |
| 9842 | } |
no test coverage detected
searching dependent graphs…