(current, workInProgress)
| 9908 | } |
| 9909 | |
| 9910 | function markRef(current, workInProgress) { |
| 9911 | var ref = workInProgress.ref; |
| 9912 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 9913 | // Schedule a Ref effect |
| 9914 | workInProgress.effectTag |= Ref; |
| 9915 | } |
| 9916 | } |
| 9917 | |
| 9918 | function updateFunctionalComponent(current, workInProgress) { |
| 9919 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected