1 write to ItemsList
Microsoft.CodeAnalysis.Features (1)
Completion\CompletionList.cs (1)
82
ItemsList
= 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);
89
foreach (var item in
ItemsList
)
128
var newItemsList = itemsList.HasValue ? itemsList.Value :
ItemsList
;
133
newItemsList ==
ItemsList
&&
164
/// Creates a copy of this <see cref="CompletionList"/> with the <see cref="
ItemsList
"/> property changed.
188
internal bool IsEmpty =>
ItemsList
.Count == 0 && SuggestionModeItem is null;
SpellCheck\AbstractSpellCheckCodeFixProvider.cs (2)
132
if (completionList.
ItemsList
.IsEmpty())
155
foreach (var item in completionList.
ItemsList
)