(current, workInProgress)
| 9688 | } |
| 9689 | |
| 9690 | function markRef(current, workInProgress) { |
| 9691 | var ref = workInProgress.ref; |
| 9692 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 9693 | // Schedule a Ref effect |
| 9694 | workInProgress.effectTag |= Ref; |
| 9695 | } |
| 9696 | } |
| 9697 | |
| 9698 | function updateFunctionalComponent(current, workInProgress) { |
| 9699 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected