MCPcopy
hub / github.com/facebook/react / includesExpiredLane

Function includesExpiredLane

packages/react-reconciler/src/ReactFiberLane.js:691–695  ·  view source on GitHub ↗
(root: FiberRoot, lanes: Lanes)

Source from the content-addressed store, hash-verified

689}
690
691export 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
697export function isBlockingLane(lane: Lane): boolean {
698 const SyncDefaultLanes =

Callers 1

performWorkOnRootFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected