(current, workInProgress)
| 10066 | } |
| 10067 | |
| 10068 | function markRef(current, workInProgress) { |
| 10069 | var ref = workInProgress.ref; |
| 10070 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 10071 | // Schedule a Ref effect |
| 10072 | workInProgress.effectTag |= Ref; |
| 10073 | } |
| 10074 | } |
| 10075 | |
| 10076 | function updateFunctionalComponent(current, workInProgress) { |
| 10077 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected