(current, workInProgress)
| 9105 | } |
| 9106 | |
| 9107 | function updateForwardRef(current, workInProgress) { |
| 9108 | var render = workInProgress.type.render; |
| 9109 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 9110 | reconcileChildren(current, workInProgress, nextChildren); |
| 9111 | memoizeProps(workInProgress, nextChildren); |
| 9112 | return workInProgress.child; |
| 9113 | } |
| 9114 | |
| 9115 | function updateFragment(current, workInProgress) { |
| 9116 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected