(server: LspServerDefinition)
| 401 | } |
| 402 | |
| 403 | function getInstallerExecutable(server: LspServerDefinition): string | null { |
| 404 | const install = normalizeInstallSpec(server); |
| 405 | if (!install) return null; |
| 406 | return install.binaryPath || install.executable || null; |
| 407 | } |
| 408 | |
| 409 | function getProviderExecutable(server: LspServerDefinition): string | null { |
| 410 | const bundle = getServerBundle(server.id); |
no test coverage detected