(current, workInProgress)
| 9850 | } |
| 9851 | |
| 9852 | function markRef(current, workInProgress) { |
| 9853 | var ref = workInProgress.ref; |
| 9854 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 9855 | // Schedule a Ref effect |
| 9856 | workInProgress.effectTag |= Ref; |
| 9857 | } |
| 9858 | } |
| 9859 | |
| 9860 | function updateFunctionalComponent(current, workInProgress) { |
| 9861 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected