(current, workInProgress)
| 19551 | } |
| 19552 | |
| 19553 | function markRef(current, workInProgress) { |
| 19554 | var ref = workInProgress.ref; |
| 19555 | |
| 19556 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 19557 | // Schedule a Ref effect |
| 19558 | workInProgress.flags |= Ref; |
| 19559 | |
| 19560 | { |
| 19561 | workInProgress.flags |= RefStatic; |
| 19562 | } |
| 19563 | } |
| 19564 | } |
| 19565 | |
| 19566 | function updateFunctionComponent(current, workInProgress, Component, nextProps, renderLanes) { |
| 19567 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…