(current, workInProgress)
| 9953 | } |
| 9954 | |
| 9955 | function markRef(current, workInProgress) { |
| 9956 | var ref = workInProgress.ref; |
| 9957 | if (current === null && ref !== null || current !== null && current.ref !== ref) { |
| 9958 | // Schedule a Ref effect |
| 9959 | workInProgress.effectTag |= Ref; |
| 9960 | } |
| 9961 | } |
| 9962 | |
| 9963 | function updateFunctionalComponent(current, workInProgress) { |
| 9964 | var fn = workInProgress.type; |
no outgoing calls
no test coverage detected