21 references to EmptyEnumerator
Microsoft.CodeAnalysis (21)
InternalUtilities\SetWithInsertionOrder.cs (1)
89=> _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)
369return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>(); 379return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>();
Syntax\ChildSyntaxList.Reversed.cs (2)
37return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>(); 47return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>();
Syntax\SeparatedSyntaxList.cs (2)
585return SpecializedCollections.EmptyEnumerator<TNode>(); 595return SpecializedCollections.EmptyEnumerator<TNode>();
Syntax\SyntaxList`1.cs (2)
415return SpecializedCollections.EmptyEnumerator<TNode>(); 425return SpecializedCollections.EmptyEnumerator<TNode>();
Syntax\SyntaxNodeOrTokenList.cs (2)
421? SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>() 434? SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>()
Syntax\SyntaxTokenList.cs (2)
447return SpecializedCollections.EmptyEnumerator<SyntaxToken>(); 457return SpecializedCollections.EmptyEnumerator<SyntaxToken>();
Syntax\SyntaxTokenList.Reversed.cs (2)
38return SpecializedCollections.EmptyEnumerator<SyntaxToken>(); 48return SpecializedCollections.EmptyEnumerator<SyntaxToken>();
Syntax\SyntaxTriviaList.cs (2)
413return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>(); 423return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>();
Syntax\SyntaxTriviaList.Reversed.cs (2)
37return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>(); 48return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>();