( root: FiberRoot, finishedWork: Fiber, committedLanes: Lanes, )
| 1942 | } |
| 1943 | |
| 1944 | export function commitMutationEffects( |
| 1945 | root: FiberRoot, |
| 1946 | finishedWork: Fiber, |
| 1947 | committedLanes: Lanes, |
| 1948 | ) { |
| 1949 | inProgressLanes = committedLanes; |
| 1950 | inProgressRoot = root; |
| 1951 | |
| 1952 | rootViewTransitionAffected = false; |
| 1953 | inUpdateViewTransition = false; |
| 1954 | |
| 1955 | resetComponentEffectTimers(); |
| 1956 | |
| 1957 | commitMutationEffectsOnFiber(finishedWork, root, committedLanes); |
| 1958 | |
| 1959 | inProgressLanes = null; |
| 1960 | inProgressRoot = null; |
| 1961 | } |
| 1962 | |
| 1963 | function recursivelyTraverseMutationEffects( |
| 1964 | root: FiberRoot, |
no test coverage detected