(current, workInProgress, nextChildren)
| 8992 | |
| 8993 | |
| 8994 | function reconcileChildren(current, workInProgress, nextChildren) { |
| 8995 | reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, workInProgress.expirationTime); |
| 8996 | } |
| 8997 | |
| 8998 | function reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, renderExpirationTime) { |
| 8999 | if (current === null) { |
no test coverage detected