(current, workInProgress)
| 9809 | } |
| 9810 | |
| 9811 | function markRef(current, workInProgress) { |
| 9812 | var ref = workInProgress.ref; |
| 9813 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 9814 | // Schedule a Ref effect |
| 9815 | workInProgress.effectTag |= Ref; |
| 9816 | } |
| 9817 | } |
| 9818 | |
| 9819 | function updateFunctionalComponent(current, workInProgress) { |
| 9820 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected