(current, workInProgress)
| 9139 | } |
| 9140 | |
| 9141 | function markRef(current, workInProgress) { |
| 9142 | var ref = workInProgress.ref; |
| 9143 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 9144 | // Schedule a Ref effect |
| 9145 | workInProgress.effectTag |= Ref; |
| 9146 | } |
| 9147 | } |
| 9148 | |
| 9149 | function updateFunctionalComponent(current, workInProgress) { |
| 9150 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected