(workInProgress: Fiber, current: Fiber | null)
| 299 | } |
| 300 | |
| 301 | export function popTransition(workInProgress: Fiber, current: Fiber | null) { |
| 302 | if (current !== null) { |
| 303 | if (enableTransitionTracing) { |
| 304 | pop(transitionStack, workInProgress); |
| 305 | } |
| 306 | |
| 307 | pop(resumedCache, workInProgress); |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | export function getPendingTransitions(): Array<Transition> | null { |
| 312 | if (!enableTransitionTracing) { |
no test coverage detected