(current, workInProgress)
| 20691 | } |
| 20692 | |
| 20693 | function markRef(current, workInProgress) { |
| 20694 | var ref = workInProgress.ref; |
| 20695 | |
| 20696 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 20697 | // Schedule a Ref effect |
| 20698 | workInProgress.effectTag |= Ref; |
| 20699 | } |
| 20700 | } |
| 20701 | |
| 20702 | function updateFunctionComponent(current, workInProgress, Component, nextProps, renderExpirationTime) { |
| 20703 | { |
no outgoing calls
no test coverage detected