| 251 | } |
| 252 | |
| 253 | export interface AcodeClientConfig { |
| 254 | useDefaultExtensions?: boolean; |
| 255 | builtinExtensions?: BuiltinExtensionsConfig; |
| 256 | extensions?: (Extension | LSPClientExtension)[]; |
| 257 | notificationHandlers?: Record< |
| 258 | string, |
| 259 | (client: LSPClient, params: unknown) => boolean |
| 260 | >; |
| 261 | workspace?: (client: LSPClient) => Workspace; |
| 262 | rootUri?: string; |
| 263 | timeout?: number; |
| 264 | highlightLanguage?: (name: string) => Language | null; |
| 265 | } |
| 266 | |
| 267 | export interface LanguageResolverContext { |
| 268 | languageId: string; |
nothing calls this directly
no outgoing calls
no test coverage detected