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)
59var completionListCache = context.GetRequiredLspService<CompletionListCache>(); 77CompletionListCache completionListCache, 121CompletionListCache completionListCache, 173CompletionListCache completionListCache, 184var 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)
50this CompletionListCache completionListCache, 52[NotNullWhen(true)] out CompletionListCache.CacheEntry? cacheEntry)