(root: FiberRoot, remainingLanes: Lanes)
| 4399 | } |
| 4400 | |
| 4401 | function releaseRootPooledCache(root: FiberRoot, remainingLanes: Lanes) { |
| 4402 | const pooledCacheLanes = (root.pooledCacheLanes &= remainingLanes); |
| 4403 | if (pooledCacheLanes === NoLanes) { |
| 4404 | // None of the remaining work relies on the cache pool. Clear it so |
| 4405 | // subsequent requests get a new cache |
| 4406 | const pooledCache = root.pooledCache; |
| 4407 | if (pooledCache != null) { |
| 4408 | root.pooledCache = null; |
| 4409 | releaseCache(pooledCache); |
| 4410 | } |
| 4411 | } |
| 4412 | } |
| 4413 | |
| 4414 | let didWarnAboutInterruptedViewTransitions = false; |
| 4415 |
no test coverage detected