(workInProgress: FiberNode)
| 292 | } |
| 293 | |
| 294 | function updateOffscreenComponent(workInProgress: FiberNode) { |
| 295 | const nextProps = workInProgress.pendingProps; |
| 296 | const nextChildren = nextProps.children; |
| 297 | reconcileChildren(workInProgress, nextChildren); |
| 298 | return workInProgress.child; |
| 299 | } |
| 300 | |
| 301 | function updateSuspenseComponent(workInProgress: FiberNode) { |
| 302 | const current = workInProgress.alternate; |
no test coverage detected