(current, workInProgress)
| 9781 | } |
| 9782 | |
| 9783 | function updateForwardRef(current, workInProgress) { |
| 9784 | var render = workInProgress.type.render; |
| 9785 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 9786 | reconcileChildren(current, workInProgress, nextChildren); |
| 9787 | memoizeProps(workInProgress, nextChildren); |
| 9788 | return workInProgress.child; |
| 9789 | } |
| 9790 | |
| 9791 | function updateFragment(current, workInProgress) { |
| 9792 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected