(current, offscreenProps)
| 20455 | } |
| 20456 | |
| 20457 | function updateWorkInProgressOffscreenFiber(current, offscreenProps) { |
| 20458 | // The props argument to `createWorkInProgress` is `any` typed, so we use this |
| 20459 | // wrapper function to constrain it. |
| 20460 | return createWorkInProgress(current, offscreenProps); |
| 20461 | } |
| 20462 | |
| 20463 | function updateSuspensePrimaryChildren(current, workInProgress, primaryChildren, renderLanes) { |
| 20464 | var currentPrimaryChildFragment = current.child; |
no test coverage detected
searching dependent graphs…