(current, workInProgress)
| 9919 | } |
| 9920 | |
| 9921 | function updateForwardRef(current, workInProgress) { |
| 9922 | var render = workInProgress.type.render; |
| 9923 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 9924 | reconcileChildren(current, workInProgress, nextChildren); |
| 9925 | memoizeProps(workInProgress, nextChildren); |
| 9926 | return workInProgress.child; |
| 9927 | } |
| 9928 | |
| 9929 | function updateFragment(current, workInProgress) { |
| 9930 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected