(current, workInProgress)
| 17131 | } |
| 17132 | |
| 17133 | function markRef(current, workInProgress) { |
| 17134 | var ref = workInProgress.ref; |
| 17135 | |
| 17136 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 17137 | // Schedule a Ref effect |
| 17138 | workInProgress.effectTag |= Ref; |
| 17139 | } |
| 17140 | } |
| 17141 | |
| 17142 | function updateFunctionComponent(current, workInProgress, Component, nextProps, renderExpirationTime) { |
| 17143 | { |
no outgoing calls
no test coverage detected