1 write to _document
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (1)
94
_document
= snapshotForDocument?.TextBuffer.AsTextContainer().GetOpenDocumentInCurrentContext();
7 references to _document
Microsoft.CodeAnalysis.EditorFeatures (7)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (7)
95
if (
_document
!= null)
97
_completionService =
_document
.GetLanguageService<CompletionService>();
98
_completionRules = _completionService?.GetRules(globalOptions.GetCompletionOptions(
_document
.Project.Language)) ?? CompletionRules.Default;
102
_completionHelper = CompletionHelper.GetHelper(
_document
);
105
: ((matchResults, text, filteredItemsBuilder) => _completionService.FilterItems(
_document
, matchResults, text, filteredItemsBuilder));
109
&& globalOptions.GetOption(CompletionViewOptionsStorage.HighlightMatchingPortionsOfCompletionListItems,
_document
.Project.Language);
111
_showCompletionItemFilters = globalOptions.GetOption(CompletionViewOptionsStorage.ShowCompletionItemFilters,
_document
.Project.Language);