(current, workInProgress, nextChildren)
| 9632 | |
| 9633 | |
| 9634 | function reconcileChildren(current, workInProgress, nextChildren) { |
| 9635 | reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, workInProgress.expirationTime); |
| 9636 | } |
| 9637 | |
| 9638 | function reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, renderExpirationTime) { |
| 9639 | if (current === null) { |
no test coverage detected