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)
61return SpecializedCollections.EmptyEnumerator<IOperation>();
Operations\IOperation.OperationList.Reversed.cs (1)
75return SpecializedCollections.EmptyEnumerator<IOperation>();
Syntax\ChildSyntaxList.cs (2)
429return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>(); 439return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>();
Syntax\ChildSyntaxList.Reversed.cs (2)
38return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>(); 48return SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>();
Syntax\SeparatedSyntaxList.cs (2)
615return SpecializedCollections.EmptyEnumerator<TNode>(); 625return SpecializedCollections.EmptyEnumerator<TNode>();
Syntax\SyntaxList`1.cs (2)
448return SpecializedCollections.EmptyEnumerator<TNode>(); 458return SpecializedCollections.EmptyEnumerator<TNode>();
Syntax\SyntaxNodeOrTokenList.cs (2)
455? SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>() 468? SpecializedCollections.EmptyEnumerator<SyntaxNodeOrToken>()
Syntax\SyntaxTokenList.cs (2)
458return SpecializedCollections.EmptyEnumerator<SyntaxToken>(); 468return SpecializedCollections.EmptyEnumerator<SyntaxToken>();
Syntax\SyntaxTokenList.Reversed.cs (2)
39return SpecializedCollections.EmptyEnumerator<SyntaxToken>(); 49return SpecializedCollections.EmptyEnumerator<SyntaxToken>();
Syntax\SyntaxTriviaList.cs (2)
432return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>(); 442return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>();
Syntax\SyntaxTriviaList.Reversed.cs (2)
38return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>(); 49return SpecializedCollections.EmptyEnumerator<SyntaxTrivia>();