(current, workInProgress)
| 9176 | } |
| 9177 | |
| 9178 | function markRef(current, workInProgress) { |
| 9179 | var ref = workInProgress.ref; |
| 9180 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 9181 | // Schedule a Ref effect |
| 9182 | workInProgress.effectTag |= Ref; |
| 9183 | } |
| 9184 | } |
| 9185 | |
| 9186 | function updateFunctionalComponent(current, workInProgress) { |
| 9187 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected