()
| 110 | } |
| 111 | |
| 112 | export function listRuntimeProviders(): LspRuntimeProvider[] { |
| 113 | return Array.from(providers.values()).sort( |
| 114 | (a, b) => getPriority(b) - getPriority(a) || a.id.localeCompare(b.id), |
| 115 | ); |
| 116 | } |
| 117 | |
| 118 | export async function selectRuntimeProvider( |
| 119 | server: LspServerDefinition, |
no test coverage detected