* Checks if the server is healthy and ready to handle requests. * * @returns true if state is 'running' AND the client has completed initialization
()
| 336 | * @returns true if state is 'running' AND the client has completed initialization |
| 337 | */ |
| 338 | function isHealthy(): boolean { |
| 339 | return state === 'running' && client.isInitialized |
| 340 | } |
| 341 | |
| 342 | /** |
| 343 | * Sends an LSP request to the server with retry logic for transient errors. |
no outgoing calls
no test coverage detected