(current, workInProgress)
| 19580 | } |
| 19581 | |
| 19582 | function markRef(current, workInProgress) { |
| 19583 | var ref = workInProgress.ref; |
| 19584 | |
| 19585 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 19586 | // Schedule a Ref effect |
| 19587 | workInProgress.flags |= Ref; |
| 19588 | |
| 19589 | { |
| 19590 | workInProgress.flags |= RefStatic; |
| 19591 | } |
| 19592 | } |
| 19593 | } |
| 19594 | |
| 19595 | function updateFunctionComponent(current, workInProgress, Component, nextProps, renderLanes) { |
| 19596 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…