2 writes to _completionService
Microsoft.CodeAnalysis.EditorFeatures (2)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (2)
98
_completionService
= _document.GetLanguageService<CompletionService>();
116
_completionService
= null;
5 references to _completionService
Microsoft.CodeAnalysis.EditorFeatures (5)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (5)
99
_completionRules =
_completionService
?.GetRules(globalOptions.GetCompletionOptions(_document.Project.Language)) ?? CompletionRules.Default;
104
_filterMethod =
_completionService
== null
106
: ((matchResults, text, filteredItemsBuilder) =>
_completionService
.FilterItems(_document, matchResults, text, filteredItemsBuilder));
821
if (
_completionService
is not null &&
826
return !await
_completionService
.IsSpeculativeTypeParameterContextAsync(_document!, item.Span.Start, cancellationToken).ConfigureAwait(false);