(current, workInProgress, nextChildren)
| 9120 | |
| 9121 | |
| 9122 | function reconcileChildren(current, workInProgress, nextChildren) { |
| 9123 | reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, workInProgress.expirationTime); |
| 9124 | } |
| 9125 | |
| 9126 | function reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, renderExpirationTime) { |
| 9127 | if (current === null) { |
no test coverage detected