(current, workInProgress)
| 9654 | } |
| 9655 | |
| 9656 | function updateForwardRef(current, workInProgress) { |
| 9657 | var render = workInProgress.type.render; |
| 9658 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 9659 | reconcileChildren(current, workInProgress, nextChildren); |
| 9660 | memoizeProps(workInProgress, nextChildren); |
| 9661 | return workInProgress.child; |
| 9662 | } |
| 9663 | |
| 9664 | function updateFragment(current, workInProgress) { |
| 9665 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected