21 references to EmptyEnumerator
Microsoft.CodeAnalysis (21)
InternalUtilities\SetWithInsertionOrder.cs (1)
90=> _elements is null ? SpecializedCollections.EmptyEnumerator<T>() : ((IEnumerable<T>)_elements).GetEnumerator();
Operations\IOperation.OperationList.cs (1)
60return SpecializedCollections.EmptyEnumerator<IOperation>();
Operations\IOperation.OperationList.Reversed.cs (1)
74return SpecializedCollections.EmptyEnumerator<IOperation>();
Syntax\ChildSyntaxList.cs (2)
428return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>(); 438return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>();
Syntax\ChildSyntaxList.Reversed.cs (2)
37return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>(); 47return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>();
Syntax\SeparatedSyntaxList.cs (2)
614return SpecializedCollections.EmptyEnumerator<TNode>(); 624return SpecializedCollections.EmptyEnumerator<TNode>();
Syntax\SyntaxList`1.cs (2)
447return SpecializedCollections.EmptyEnumerator<TNode>(); 457return SpecializedCollections.EmptyEnumerator<TNode>();
Syntax\SyntaxNodeOrTokenList.cs (2)
454? SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>() 467? SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>()
Syntax\SyntaxTokenList.cs (2)
457return SpecializedCollections.EmptyEnumerator<SyntaxToken>(); 467return SpecializedCollections.EmptyEnumerator<SyntaxToken>();
Syntax\SyntaxTokenList.Reversed.cs (2)
38return SpecializedCollections.EmptyEnumerator<SyntaxToken>(); 48return SpecializedCollections.EmptyEnumerator<SyntaxToken>();
Syntax\SyntaxTriviaList.cs (2)
431return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>(); 441return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>();
Syntax\SyntaxTriviaList.Reversed.cs (2)
37return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>(); 48return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>();