(owner: OwnerState)
| 532 | } |
| 533 | |
| 534 | function shiftQueuedExecutionForOwner(owner: OwnerState): QueuedExecution | null { |
| 535 | if (!owner.queueHead) return null |
| 536 | return removeQueueNode(owner.queueHead) |
| 537 | } |
| 538 | |
| 539 | function removeQueuedExecutionById(queueId: number): QueuedExecution | null { |
| 540 | const node = queueNodes.get(queueId) |
no test coverage detected