1 instantiation of CacheEntry
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Completion\CompletionHandler.cs (1)
359var resultId = completionListCache.UpdateCache(new CompletionListCache.CacheEntry(request.TextDocument, completionList));
5 references to CacheEntry
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Handler\Completion\CompletionListCache.cs (1)
15internal class CompletionListCache : ResolveCache<CacheEntry>
Handler\Completion\CompletionResolveHandler.cs (3)
57var cacheEntry = GetCompletionListCacheEntry(completionItem); 180private CompletionListCache.CacheEntry? GetCompletionListCacheEntry(LSP.CompletionItem request) 190var cacheEntry = _completionListCache.GetCachedEntry(resolveData.ResultId.Value);
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
Completion\CompletionTests.cs (1)
569var cacheEntry = cache.GetCachedEntry(0);