( workInProgress: Fiber, root: FiberRoot, renderLanes: Lanes, )
| 263 | } |
| 264 | |
| 265 | export function popRootTransition( |
| 266 | workInProgress: Fiber, |
| 267 | root: FiberRoot, |
| 268 | renderLanes: Lanes, |
| 269 | ) { |
| 270 | if (enableTransitionTracing) { |
| 271 | pop(transitionStack, workInProgress); |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | export function pushTransition( |
| 276 | offscreenWorkInProgress: Fiber, |
no test coverage detected