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