(root, finishedWork, committedLanes)
| 24247 | } |
| 24248 | } // This function detects when a Suspense boundary goes from visible to hidden. |
| 24249 | function commitMutationEffects(root, finishedWork, committedLanes) { |
| 24250 | inProgressLanes = committedLanes; |
| 24251 | inProgressRoot = root; |
| 24252 | setCurrentFiber(finishedWork); |
| 24253 | commitMutationEffectsOnFiber(finishedWork, root); |
| 24254 | setCurrentFiber(finishedWork); |
| 24255 | inProgressLanes = null; |
| 24256 | inProgressRoot = null; |
| 24257 | } |
| 24258 | |
| 24259 | function recursivelyTraverseMutationEffects(root, parentFiber, lanes) { |
| 24260 | // Deletions effects can be scheduled on any fiber type. They need to happen |
no test coverage detected
searching dependent graphs…