(current, workInProgress)
| 10032 | } |
| 10033 | |
| 10034 | function updateForwardRef(current, workInProgress) { |
| 10035 | var render = workInProgress.type.render; |
| 10036 | var nextChildren = render(workInProgress.pendingProps, workInProgress.ref); |
| 10037 | reconcileChildren(current, workInProgress, nextChildren); |
| 10038 | memoizeProps(workInProgress, nextChildren); |
| 10039 | return workInProgress.child; |
| 10040 | } |
| 10041 | |
| 10042 | function updateFragment(current, workInProgress) { |
| 10043 | var nextChildren = workInProgress.pendingProps; |
no test coverage detected