(current, workInProgress)
| 9737 | var mountChildFibers = ChildReconciler(false); |
| 9738 | |
| 9739 | function cloneChildFibers(current, workInProgress) { |
| 9740 | !(current === null || workInProgress.child === current.child) ? invariant(false, 'Resuming work not yet implemented.') : void 0; |
| 9741 | |
| 9742 | if (workInProgress.child === null) { |
| 9743 | return; |
| 9744 | } |
| 9745 | |
| 9746 | var currentChild = workInProgress.child; |
| 9747 | var newChild = createWorkInProgress(currentChild, currentChild.pendingProps, currentChild.expirationTime); |
| 9748 | workInProgress.child = newChild; |
| 9749 | |
| 9750 | newChild['return'] = workInProgress; |
| 9751 | while (currentChild.sibling !== null) { |
| 9752 | currentChild = currentChild.sibling; |
| 9753 | newChild = newChild.sibling = createWorkInProgress(currentChild, currentChild.pendingProps, currentChild.expirationTime); |
| 9754 | newChild['return'] = workInProgress; |
| 9755 | } |
| 9756 | newChild.sibling = null; |
| 9757 | } |
| 9758 | |
| 9759 | var didWarnAboutBadClass = void 0; |
| 9760 | var didWarnAboutGetDerivedStateOnFunctionalComponent = void 0; |
no test coverage detected