(current, workInProgress)
| 9775 | } |
| 9776 | |
| 9777 | function updateForwardRef(current, workInProgress) { |
| 9778 | var render = workInProgress.type.render; |
| 9779 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 9780 | reconcileChildren(current, workInProgress, nextChildren); |
| 9781 | memoizeProps(workInProgress, nextChildren); |
| 9782 | return workInProgress.child; |
| 9783 | } |
| 9784 | |
| 9785 | function updateFragment(current, workInProgress) { |
| 9786 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected