(current, workInProgress)
| 9048 | } |
| 9049 | |
| 9050 | function markRef(current, workInProgress) { |
| 9051 | var ref = workInProgress.ref; |
| 9052 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 9053 | // Schedule a Ref effect |
| 9054 | workInProgress.effectTag |= Ref; |
| 9055 | } |
| 9056 | } |
| 9057 | |
| 9058 | function updateFunctionalComponent(current, workInProgress) { |
| 9059 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected