Function
includesExpiredLane
(root: FiberRoot, lanes: Lanes)
Source from the content-addressed store, hash-verified
| 689 | } |
| 690 | |
| 691 | export function includesExpiredLane(root: FiberRoot, lanes: Lanes): boolean { |
| 692 | // This is a separate check from includesBlockingLane because a lane can |
| 693 | // expire after a render has already started. |
| 694 | return (lanes & root.expiredLanes) !== NoLanes; |
| 695 | } |
| 696 | |
| 697 | export function isBlockingLane(lane: Lane): boolean { |
| 698 | const SyncDefaultLanes = |
Tested by
no test coverage detected