( workInProgress: Fiber, root: FiberRoot, renderLanes: Lanes, )
| 252 | } |
| 253 | |
| 254 | export function pushRootTransition( |
| 255 | workInProgress: Fiber, |
| 256 | root: FiberRoot, |
| 257 | renderLanes: Lanes, |
| 258 | ) { |
| 259 | if (enableTransitionTracing) { |
| 260 | const rootTransitions = getWorkInProgressTransitions(); |
| 261 | push(transitionStack, rootTransitions, workInProgress); |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | export function popRootTransition( |
| 266 | workInProgress: Fiber, |
no test coverage detected