()
| 425 | } |
| 426 | |
| 427 | capabilities(): RuntimeCapabilities { |
| 428 | return { |
| 429 | methods: [...this.handlers.keys()].sort(), |
| 430 | notifications: [...this.notifications].sort(), |
| 431 | agentProviders: this.resolvedAgentProviders(), |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | private capabilitiesFor(connection: RuntimeConnection): RuntimeCapabilities { |
| 436 | const canReadProviders = this.canInvoke("agent/provider/list", connection) || this.canInvoke("agent/provider/status", connection) |
nothing calls this directly
no test coverage detected