(current, workInProgress)
| 9111 | } |
| 9112 | |
| 9113 | function updateForwardRef(current, workInProgress) { |
| 9114 | var render = workInProgress.type.render; |
| 9115 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 9116 | reconcileChildren(current, workInProgress, nextChildren); |
| 9117 | memoizeProps(workInProgress, nextChildren); |
| 9118 | return workInProgress.child; |
| 9119 | } |
| 9120 | |
| 9121 | function updateFragment(current, workInProgress) { |
| 9122 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected