(current, workInProgress)
| 9795 | var mountChildFibers = ChildReconciler(false); |
| 9796 | |
| 9797 | function cloneChildFibers(current, workInProgress) { |
| 9798 | !(current === null || workInProgress.child === current.child) ? invariant(false, 'Resuming work not yet implemented.') : void 0; |
| 9799 | |
| 9800 | if (workInProgress.child === null) { |
| 9801 | return; |
| 9802 | } |
| 9803 | |
| 9804 | var currentChild = workInProgress.child; |
| 9805 | var newChild = createWorkInProgress(currentChild, currentChild.pendingProps, currentChild.expirationTime); |
| 9806 | workInProgress.child = newChild; |
| 9807 | |
| 9808 | newChild['return'] = workInProgress; |
| 9809 | while (currentChild.sibling !== null) { |
| 9810 | currentChild = currentChild.sibling; |
| 9811 | newChild = newChild.sibling = createWorkInProgress(currentChild, currentChild.pendingProps, currentChild.expirationTime); |
| 9812 | newChild['return'] = workInProgress; |
| 9813 | } |
| 9814 | newChild.sibling = null; |
| 9815 | } |
| 9816 | |
| 9817 | var didWarnAboutBadClass = void 0; |
| 9818 | var didWarnAboutGetDerivedStateOnFunctionalComponent = void 0; |
no test coverage detected