1 write to ItemsList
Microsoft.CodeAnalysis.Features (1)
Completion\CompletionList.cs (1)
82ItemsList = itemsList;
9 references to ItemsList
Microsoft.CodeAnalysis.Features (9)
Completion\CompletionList.cs (7)
24[Obsolete($"This property is obsolete. Use {nameof(ItemsList)} instead", error: false)] 83_lazyItems = new(() => ItemsList.ToImmutableArrayOrEmpty(), System.Threading.LazyThreadSafetyMode.PublicationOnly); 89foreach (var item in ItemsList) 128var newItemsList = itemsList.HasValue ? itemsList.Value : ItemsList; 133newItemsList == ItemsList && 164/// Creates a copy of this <see cref="CompletionList"/> with the <see cref="ItemsList"/> property changed. 188internal bool IsEmpty => ItemsList.Count == 0 && SuggestionModeItem is null;
SpellCheck\AbstractSpellCheckCodeFixProvider.cs (2)
132if (completionList.ItemsList.IsEmpty()) 155foreach (var item in completionList.ItemsList)