(lane: Lane)
| 3245 | } |
| 3246 | |
| 3247 | export function markSpawnedRetryLane(lane: Lane): void { |
| 3248 | // Keep track of the retry lanes that were spawned by a fallback during the |
| 3249 | // current render and were not later pinged. This will represent the lanes |
| 3250 | // that are known to still be suspended. |
| 3251 | workInProgressSuspendedRetryLanes = mergeLanes( |
| 3252 | workInProgressSuspendedRetryLanes, |
| 3253 | lane, |
| 3254 | ); |
| 3255 | } |
| 3256 | |
| 3257 | function panicOnRootError(root: FiberRoot, error: mixed) { |
| 3258 | // There's no ancestor that can handle this exception. This should never |
no test coverage detected