* Notifies all registered subscribers about the current IDE context.
()
| 117 | * Notifies all registered subscribers about the current IDE context. |
| 118 | */ |
| 119 | function notifySubscribers(): void { |
| 120 | for (const subscriber of subscribers) { |
| 121 | subscriber(ideContextState); |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Sets the IDE context and notifies all registered subscribers of the change. |
no outgoing calls
no test coverage detected