(current, finishedWork)
| 12407 | null != previousCache && releaseCache(previousCache)); |
| 12408 | } |
| 12409 | function commitCachePassiveMountEffect(current, finishedWork) { |
| 12410 | current = null; |
| 12411 | null !== finishedWork.alternate && |
| 12412 | (current = finishedWork.alternate.memoizedState.cache); |
| 12413 | finishedWork = finishedWork.memoizedState.cache; |
| 12414 | finishedWork !== current && |
| 12415 | (finishedWork.refCount++, null != current && releaseCache(current)); |
| 12416 | } |
| 12417 | function recursivelyTraversePassiveMountEffects( |
| 12418 | root, |
| 12419 | parentFiber, |
no test coverage detected
searching dependent graphs…