(current, workInProgress, nextChildren)
| 9794 | |
| 9795 | |
| 9796 | function reconcileChildren(current, workInProgress, nextChildren) { |
| 9797 | reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, workInProgress.expirationTime); |
| 9798 | } |
| 9799 | |
| 9800 | function reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, renderExpirationTime) { |
| 9801 | if (current === null) { |
no test coverage detected