(finishedWork, root, committedLanes)
| 31094 | } |
| 31095 | } |
| 31096 | function commitLayoutEffects(finishedWork, root, committedLanes) { |
| 31097 | inProgressLanes = committedLanes; |
| 31098 | inProgressRoot = root; |
| 31099 | commitLayoutEffectOnFiber(root, finishedWork.alternate, finishedWork); |
| 31100 | inProgressRoot = inProgressLanes = null; |
| 31101 | } |
| 31102 | function recursivelyTraverseLayoutEffects(root, parentFiber) { |
| 31103 | if (parentFiber.subtreeFlags & 8772) |
| 31104 | for (parentFiber = parentFiber.child; null !== parentFiber; ) |
no test coverage detected
searching dependent graphs…