2 writes to _completionService
Microsoft.CodeAnalysis.EditorFeatures (2)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (2)
96
_completionService
= _document.GetLanguageService<CompletionService>();
114
_completionService
= null;
3 references to _completionService
Microsoft.CodeAnalysis.EditorFeatures (3)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (3)
97
_completionRules =
_completionService
?.GetRules(globalOptions.GetCompletionOptions(_document.Project.Language)) ?? CompletionRules.Default;
102
_filterMethod =
_completionService
== null
104
: ((matchResults, text, filteredItemsBuilder) =>
_completionService
.FilterItems(_document, matchResults, text, filteredItemsBuilder));