(current, workInProgress)
| 9874 | } |
| 9875 | |
| 9876 | function updateForwardRef(current, workInProgress) { |
| 9877 | var render = workInProgress.type.render; |
| 9878 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 9879 | reconcileChildren(current, workInProgress, nextChildren); |
| 9880 | memoizeProps(workInProgress, nextChildren); |
| 9881 | return workInProgress.child; |
| 9882 | } |
| 9883 | |
| 9884 | function updateFragment(current, workInProgress) { |
| 9885 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected