(current, workInProgress)
| 9142 | } |
| 9143 | |
| 9144 | function updateForwardRef(current, workInProgress) { |
| 9145 | var render = workInProgress.type.render; |
| 9146 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 9147 | reconcileChildren(current, workInProgress, nextChildren); |
| 9148 | memoizeProps(workInProgress, nextChildren); |
| 9149 | return workInProgress.child; |
| 9150 | } |
| 9151 | |
| 9152 | function updateFragment(current, workInProgress) { |
| 9153 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected