(current, workInProgress)
| 9145 | } |
| 9146 | |
| 9147 | function markRef(current, workInProgress) { |
| 9148 | var ref = workInProgress.ref; |
| 9149 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 9150 | // Schedule a Ref effect |
| 9151 | workInProgress.effectTag |= Ref; |
| 9152 | } |
| 9153 | } |
| 9154 | |
| 9155 | function updateFunctionalComponent(current, workInProgress) { |
| 9156 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected