(current, workInProgress, nextChildren)
| 9852 | |
| 9853 | |
| 9854 | function reconcileChildren(current, workInProgress, nextChildren) { |
| 9855 | reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, workInProgress.expirationTime); |
| 9856 | } |
| 9857 | |
| 9858 | function reconcileChildrenAtExpirationTime(current, workInProgress, nextChildren, renderExpirationTime) { |
| 9859 | if (current === null) { |
no test coverage detected