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