()
| 309 | } |
| 310 | |
| 311 | export function getPendingTransitions(): Array<Transition> | null { |
| 312 | if (!enableTransitionTracing) { |
| 313 | return null; |
| 314 | } |
| 315 | |
| 316 | return transitionStack.current; |
| 317 | } |
| 318 | |
| 319 | export function getSuspendedCache(): SpawnedCachePool | null { |
| 320 | // This function is called when a Suspense boundary suspends. It returns the |
no outgoing calls
no test coverage detected