Lines Matching full:client
14 this.clients.forEach(async client => await client.stop());
23 * including the language client.
53 const client = this.workspaceFolders.get(folder.uri.toString());
54 if (client) {
55 client.dispose();
90 // Get or create a client context for this folder.
96 // Start the client for this language if necessary.
97 let client = folderContext.clients.get(languageId);
98 if (!client) {
99 client = await this.activateWorkspaceFolder(
101 folderContext.clients.set(languageId, client);
103 return client;
169 * Activate the language client for the given language in the given workspace
192 // Try to activate the language client.
206 * Start a new language client for the given language. Returns an array
215 const clientTitle = languageName.toUpperCase() + ' Language Client';
259 // Configure the middleware of the client. This is sort of abused to allow
278 // Configure the client options.
296 // Create the language client and start the client.
371 * Return the language client for the given language and uri, or null if no
372 * client is active.