(root, renderLanes)
| 4145 | : nextLanes; |
| 4146 | } |
| 4147 | function checkIfRootIsPrerendering(root, renderLanes) { |
| 4148 | return ( |
| 4149 | 0 === |
| 4150 | (root.pendingLanes & |
| 4151 | ~(root.suspendedLanes & ~root.pingedLanes) & |
| 4152 | renderLanes) |
| 4153 | ); |
| 4154 | } |
| 4155 | function computeExpirationTime(lane, currentTime) { |
| 4156 | switch (lane) { |
| 4157 | case 1: |
no outgoing calls
no test coverage detected
searching dependent graphs…