(current, finishedWork)
| 12393 | } |
| 12394 | } |
| 12395 | function commitOffscreenPassiveMountEffects(current, finishedWork) { |
| 12396 | var previousCache = null; |
| 12397 | null !== current && |
| 12398 | null !== current.memoizedState && |
| 12399 | null !== current.memoizedState.cachePool && |
| 12400 | (previousCache = current.memoizedState.cachePool.pool); |
| 12401 | current = null; |
| 12402 | null !== finishedWork.memoizedState && |
| 12403 | null !== finishedWork.memoizedState.cachePool && |
| 12404 | (current = finishedWork.memoizedState.cachePool.pool); |
| 12405 | current !== previousCache && |
| 12406 | (null != current && current.refCount++, |
| 12407 | null != previousCache && releaseCache(previousCache)); |
| 12408 | } |
| 12409 | function commitCachePassiveMountEffect(current, finishedWork) { |
| 12410 | current = null; |
| 12411 | null !== finishedWork.alternate && |
no test coverage detected
searching dependent graphs…