8 references to MoveNext
Microsoft.CodeAnalysis (6)
Operations\ControlFlowGraphBuilder.cs (1)
3486while (currentOperation.ChildOperations.GetEnumerator() is var enumerator && enumerator.MoveNext())
Operations\IOperation.OperationList.cs (4)
74if (enumerator.MoveNext()) 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"/> 157public bool MoveNext() => _enumerator.MoveNext();
Operations\OperationExtensions.cs (1)
103if (!iterator.MoveNext())
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\TestOperationVisitor.cs (2)
82Assert.True(forwards.MoveNext()); 85Assert.True(forwards.MoveNext());