5 references to GetEnumerator
Microsoft.CodeAnalysis (4)
Operations\ControlFlowGraphBuilder.cs (1)
3486while (currentOperation.ChildOperations.GetEnumerator() is var enumerator && enumerator.MoveNext())
Operations\IOperation.OperationList.cs (1)
72var enumerator = GetEnumerator();
Operations\OperationExtensions.cs (2)
97stack.Push(operation.ChildOperations.GetEnumerator()); 117stack.Push(current.ChildOperations.GetEnumerator());
Microsoft.CodeAnalysis.Test.Utilities (1)
Compilation\TestOperationVisitor.cs (1)
80var forwards = operation.ChildOperations.GetEnumerator();