7 references to GetEnumerator
Microsoft.CodeAnalysis (4)
Operations\ControlFlowGraphBuilder.cs (1)
3496while (currentOperation.ChildOperations.GetEnumerator() is var enumerator && enumerator.MoveNext())
Operations\IOperation.OperationList.cs (1)
73var enumerator = GetEnumerator();
Operations\OperationExtensions.cs (2)
99stack.Push(operation.ChildOperations.GetEnumerator()); 119stack.Push(current.ChildOperations.GetEnumerator());
Microsoft.CodeAnalysis.NetAnalyzers (3)
Microsoft.NetCore.Analyzers\Performance\UseAsSpanInsteadOfRangeIndexer.cs (1)
133IOperation.OperationList.Enumerator enumerator = operationContext.Operation.ChildOperations.GetEnumerator();
src\sdk\src\Microsoft.CodeAnalysis.NetAnalyzers\src\Utilities\Compiler\Extensions\IOperationExtensions.cs (2)
800stack.Add(operation.ChildOperations.GetEnumerator()); 821stack.Add(current.ChildOperations.GetEnumerator());