(lane: Lane)
| 799 | // Seems redundant, but it changes the type from a single lane (used for |
| 800 | // updates) to a group of lanes (used for flushing work). |
| 801 | export function laneToLanes(lane: Lane): Lanes { |
| 802 | return lane; |
| 803 | } |
| 804 | |
| 805 | export function higherPriorityLane(a: Lane, b: Lane): Lane { |
| 806 | // This works because the bit ranges decrease in priority as you go left. |
no outgoing calls
no test coverage detected