(current, workInProgress)
| 9816 | } |
| 9817 | |
| 9818 | function updateForwardRef(current, workInProgress) { |
| 9819 | var render = workInProgress.type.render; |
| 9820 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 9821 | reconcileChildren(current, workInProgress, nextChildren); |
| 9822 | memoizeProps(workInProgress, nextChildren); |
| 9823 | return workInProgress.child; |
| 9824 | } |
| 9825 | |
| 9826 | function updateFragment(current, workInProgress) { |
| 9827 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected