(current, workInProgress, nextChildren)
| 9897 | |
| 9898 | |
| 9899 | function reconcileChildren(current, workInProgress, nextChildren) { |
| 9900 | reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, workInProgress.expirationTime); |
| 9901 | } |
| 9902 | |
| 9903 | function reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, renderExpirationTime) { |
| 9904 | if (current === null) { |
no test coverage detected