(current, workInProgress)
| 9866 | } |
| 9867 | |
| 9868 | function markRef(current, workInProgress) { |
| 9869 | var ref = workInProgress.ref; |
| 9870 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 9871 | // Schedule a Ref effect |
| 9872 | workInProgress.effectTag |= Ref; |
| 9873 | } |
| 9874 | } |
| 9875 | |
| 9876 | function updateFunctionalComponent(current, workInProgress) { |
| 9877 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected