(current, offscreenProps)
| 20494 | } |
| 20495 | |
| 20496 | function updateWorkInProgressOffscreenFiber(current, offscreenProps) { |
| 20497 | // The props argument to `createWorkInProgress` is `any` typed, so we use this |
| 20498 | // wrapper function to constrain it. |
| 20499 | return createWorkInProgress(current, offscreenProps); |
| 20500 | } |
| 20501 | |
| 20502 | function updateSuspensePrimaryChildren(current, workInProgress, primaryChildren, renderLanes) { |
| 20503 | var currentPrimaryChildFragment = current.child; |
no test coverage detected
searching dependent graphs…