()
| 61 | * distinguish between pending, failed, and not-started states. |
| 62 | */ |
| 63 | export function getLspServerManager(): LSPServerManager | undefined { |
| 64 | // Don't return a broken instance if initialization failed |
| 65 | if (initializationState === 'failed') { |
| 66 | return undefined |
| 67 | } |
| 68 | return lspManagerInstance |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Get the current initialization status of the LSP server manager. |
no outgoing calls
no test coverage detected