(finishedWork, root, committedLanes)
| 24655 | } |
| 24656 | |
| 24657 | function commitLayoutEffects(finishedWork, root, committedLanes) { |
| 24658 | inProgressLanes = committedLanes; |
| 24659 | inProgressRoot = root; |
| 24660 | nextEffect = finishedWork; |
| 24661 | commitLayoutEffects_begin(finishedWork, root, committedLanes); |
| 24662 | inProgressLanes = null; |
| 24663 | inProgressRoot = null; |
| 24664 | } |
| 24665 | |
| 24666 | function commitLayoutEffects_begin(subtreeRoot, root, committedLanes) { |
| 24667 | // Suspense layout effects semantics don't change for legacy roots. |
no test coverage detected
searching dependent graphs…