()
| 551 | |
| 552 | _dispatcher: Scheduler.SchedulerDispatcher | undefined = undefined |
| 553 | get currentDispatcher(): Scheduler.SchedulerDispatcher { |
| 554 | return this._dispatcher ??= this.currentScheduler.makeDispatcher() |
| 555 | } |
| 556 | |
| 557 | getRef<X>(ref: Context.Reference<X>): X { |
| 558 | return Context.get(this.context, ref) |
nothing calls this directly
no test coverage detected