( current: null | Fiber, workInProgress: Fiber, renderLanes: Lanes, )
| 3674 | } |
| 3675 | |
| 3676 | function updateScopeComponent( |
| 3677 | current: null | Fiber, |
| 3678 | workInProgress: Fiber, |
| 3679 | renderLanes: Lanes, |
| 3680 | ) { |
| 3681 | const nextProps = workInProgress.pendingProps; |
| 3682 | const nextChildren = nextProps.children; |
| 3683 | markRef(current, workInProgress); |
| 3684 | reconcileChildren(current, workInProgress, nextChildren, renderLanes); |
| 3685 | return workInProgress.child; |
| 3686 | } |
| 3687 | |
| 3688 | export function markWorkInProgressReceivedUpdate() { |
| 3689 | didReceiveUpdate = true; |
no test coverage detected