(offscreenWorkInProgress, prevCachePool)
| 7140 | : workInProgressRoot.pooledCache; |
| 7141 | } |
| 7142 | function pushTransition(offscreenWorkInProgress, prevCachePool) { |
| 7143 | null === prevCachePool |
| 7144 | ? push(resumedCache, resumedCache.current) |
| 7145 | : push(resumedCache, prevCachePool.pool); |
| 7146 | } |
| 7147 | function getSuspendedCache() { |
| 7148 | var cacheFromPool = peekCacheFromPool(); |
| 7149 | return null === cacheFromPool |
no test coverage detected
searching dependent graphs…