MCPcopy Create free account
hub / github.com/Acode-Foundation/Acode / listRuntimeProviders

Function listRuntimeProviders

src/cm/lsp/runtimeProviders.ts:112–116  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

110}
111
112export 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
118export async function selectRuntimeProvider(
119 server: LspServerDefinition,

Callers 2

listFunction · 0.90
selectRuntimeProviderFunction · 0.85

Calls 1

getPriorityFunction · 0.85

Tested by

no test coverage detected