(current, workInProgress)
| 9702 | var mountChildFibers = ChildReconciler(false); |
| 9703 | |
| 9704 | function cloneChildFibers(current, workInProgress) { |
| 9705 | !(current === null || workInProgress.child === current.child) ? invariant(false, 'Resuming work not yet implemented.') : void 0; |
| 9706 | |
| 9707 | if (workInProgress.child === null) { |
| 9708 | return; |
| 9709 | } |
| 9710 | |
| 9711 | var currentChild = workInProgress.child; |
| 9712 | var newChild = createWorkInProgress(currentChild, currentChild.pendingProps, currentChild.expirationTime); |
| 9713 | workInProgress.child = newChild; |
| 9714 | |
| 9715 | newChild['return'] = workInProgress; |
| 9716 | while (currentChild.sibling !== null) { |
| 9717 | currentChild = currentChild.sibling; |
| 9718 | newChild = newChild.sibling = createWorkInProgress(currentChild, currentChild.pendingProps, currentChild.expirationTime); |
| 9719 | newChild['return'] = workInProgress; |
| 9720 | } |
| 9721 | newChild.sibling = null; |
| 9722 | } |
| 9723 | |
| 9724 | var didWarnAboutBadClass = void 0; |
| 9725 | var didWarnAboutGetDerivedStateOnFunctionalComponent = void 0; |
no test coverage detected