(current, workInProgress, nextChildren)
| 9759 | |
| 9760 | |
| 9761 | function reconcileChildren(current, workInProgress, nextChildren) { |
| 9762 | reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, workInProgress.expirationTime); |
| 9763 | } |
| 9764 | |
| 9765 | function reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, renderExpirationTime) { |
| 9766 | if (current === null) { |
no test coverage detected