1 instantiation of CompletionListCache
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Completion\CompletionListCacheFactory.cs (1)
20public ILspService CreateILspService(LspServices lspServices, WellKnownLspServerKinds serverKind) => new CompletionListCache();
13 references to CompletionListCache
Microsoft.CodeAnalysis.LanguageServer.Protocol (13)
Handler\Completion\CompletionHandler.cs (6)
57var completionListCache = context.GetRequiredLspService<CompletionListCache>(); 75CompletionListCache completionListCache, 119CompletionListCache completionListCache, 171CompletionListCache completionListCache, 182var resultId = completionListCache.UpdateCache(new CompletionListCache.CacheEntry(completionList));
Handler\Completion\CompletionListCache.cs (1)
6using static Microsoft.CodeAnalysis.LanguageServer.Handler.Completion.CompletionListCache;
Handler\Completion\CompletionListCacheFactory.cs (1)
11[ExportCSharpVisualBasicLspServiceFactory(typeof(CompletionListCache)), Shared]
Handler\Completion\CompletionResolveHandler.cs (3)
49var completionListCache = context.GetRequiredLspService<CompletionListCache>(); 70CompletionListCache completionListCache,
Handler\Completion\Extensions.cs (2)
49this CompletionListCache completionListCache, 51[NotNullWhen(true)] out CompletionListCache.CacheEntry? cacheEntry)