(
server: LspServerDefinition,
context: LspRuntimeContext = {},
runtimeAction?: LspRuntimeContext["runtimeAction"],
)
| 20 | } |
| 21 | |
| 22 | async function getProvider( |
| 23 | server: LspServerDefinition, |
| 24 | context: LspRuntimeContext = {}, |
| 25 | runtimeAction?: LspRuntimeContext["runtimeAction"], |
| 26 | ): Promise<LspRuntimeProvider | null> { |
| 27 | return selectRuntimeProvider( |
| 28 | server, |
| 29 | getSettingsContext(server, context, runtimeAction), |
| 30 | ); |
| 31 | } |
| 32 | |
| 33 | export async function checkRuntimeServerInstallation( |
| 34 | server: LspServerDefinition, |
no test coverage detected