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