8 references to EmptyReadOnlyList
Microsoft.CodeAnalysis (8)
Diagnostic\Diagnostic.cs (1)
483get { return SpecializedCollections.EmptyReadOnlyList<object?>(); }
Diagnostic\Diagnostic_SimpleDiagnostic.cs (1)
50_additionalLocations = additionalLocations?.ToImmutableArray() ?? SpecializedCollections.EmptyReadOnlyList<Location>();
Diagnostic\DiagnosticInfo.cs (1)
294return SpecializedCollections.EmptyReadOnlyList<Location>();
PEWriter\RootModuleType.cs (1)
38return _methods ??= SpecializedCollections.EmptyReadOnlyList<IMethodDefinition>();
Syntax\SyntaxNodeExtensions_Tracking.cs (2)
134return SpecializedCollections.EmptyReadOnlyList<SyntaxNode>(); 232return SpecializedCollections.EmptyReadOnlyList<SyntaxNode>();
Text\TextChange.cs (1)
97public static IReadOnlyList<TextChange> NoChanges => SpecializedCollections.EmptyReadOnlyList<TextChange>();
Text\TextChangeRange.cs (1)
93public static IReadOnlyList<TextChangeRange> NoChanges => SpecializedCollections.EmptyReadOnlyList<TextChangeRange>();