(current, workInProgress)
| 9014 | } |
| 9015 | |
| 9016 | function updateForwardRef(current, workInProgress) { |
| 9017 | var render = workInProgress.type.render; |
| 9018 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 9019 | reconcileChildren(current, workInProgress, nextChildren); |
| 9020 | memoizeProps(workInProgress, nextChildren); |
| 9021 | return workInProgress.child; |
| 9022 | } |
| 9023 | |
| 9024 | function updateFragment(current, workInProgress) { |
| 9025 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected