(root, finishedWork, committedLanes)
| 24286 | } |
| 24287 | } // This function detects when a Suspense boundary goes from visible to hidden. |
| 24288 | function commitMutationEffects(root, finishedWork, committedLanes) { |
| 24289 | inProgressLanes = committedLanes; |
| 24290 | inProgressRoot = root; |
| 24291 | setCurrentFiber(finishedWork); |
| 24292 | commitMutationEffectsOnFiber(finishedWork, root); |
| 24293 | setCurrentFiber(finishedWork); |
| 24294 | inProgressLanes = null; |
| 24295 | inProgressRoot = null; |
| 24296 | } |
| 24297 | |
| 24298 | function recursivelyTraverseMutationEffects(root, parentFiber, lanes) { |
| 24299 | // Deletions effects can be scheduled on any fiber type. They need to happen |
no test coverage detected
searching dependent graphs…