1 write to _items
Microsoft.VisualStudio.LanguageServices.Implementation (1)
SolutionExplorer\DiagnosticItem\BaseDiagnosticAndGeneratorItemSource.cs (1)
85
_items
= CreateDiagnosticAndGeneratorItems(project.Id, project.Language, project.CompilationOptions, _analyzerConfigOptions);
7 references to _items
Microsoft.VisualStudio.LanguageServices.Implementation (7)
SolutionExplorer\DiagnosticItem\BaseDiagnosticAndGeneratorItemSource.cs (7)
52
if (
_items
!= null)
54
return
_items
.Count > 0;
78
if (
_items
== null)
92
KeyValueLogMessage.Create(m => m["Count"] =
_items
.Count));
94
return
_items
;
182
Contract.ThrowIfNull(
_items
, "We only subscribe to events after we create the items, so this should not be null.");
184
foreach (var item in
_items
.OfType<DiagnosticItem>())