2 instantiations of Enumerator
Microsoft.CodeAnalysis (2)
Operations\IOperation.OperationList.cs (2)
35public Enumerator GetEnumerator() => new Enumerator(_operation); 64return new EnumeratorImpl(new Enumerator(_operation));
9 references to Enumerator
Microsoft.CodeAnalysis (9)
Operations\IOperation.OperationList.cs (7)
35public Enumerator GetEnumerator() => new Enumerator(_operation); 73var enumerator = GetEnumerator(); 98/// <see cref="Enumerator.MoveNext"/> has returned false will throw an <see cref="InvalidOperationException"/>. 104/// Implementation of the <see cref="Enumerator.MoveNext"/> and <see cref="Enumerator.Current"/> 147private Enumerator _enumerator; 149public EnumeratorImpl(Enumerator enumerator)
Operations\OperationExtensions.cs (2)
96var stack = ArrayBuilder<IOperation.OperationList.Enumerator>.GetInstance(); 103var iterator = stack.Pop();