(finishedWork, root, committedLanes)
| 24616 | } |
| 24617 | |
| 24618 | function commitLayoutEffects(finishedWork, root, committedLanes) { |
| 24619 | inProgressLanes = committedLanes; |
| 24620 | inProgressRoot = root; |
| 24621 | nextEffect = finishedWork; |
| 24622 | commitLayoutEffects_begin(finishedWork, root, committedLanes); |
| 24623 | inProgressLanes = null; |
| 24624 | inProgressRoot = null; |
| 24625 | } |
| 24626 | |
| 24627 | function commitLayoutEffects_begin(subtreeRoot, root, committedLanes) { |
| 24628 | // Suspense layout effects semantics don't change for legacy roots. |
no test coverage detected
searching dependent graphs…