| 47 | * Callers manage their own state; the scheduler only orchestrates execution order. |
| 48 | */ |
| 49 | export class Scheduler { |
| 50 | private contexts = new Map<SchedulerContextId, SchedulerContextState>() |
| 51 | private clearListeners = new Set<(contextId: SchedulerContextId) => void>() |
| 52 |
nothing calls this directly
no outgoing calls
no test coverage detected