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)
73if (enumerator.MoveNext()) 97/// <see cref="Enumerator.MoveNext"/> has returned false will throw an <see cref="InvalidOperationException"/>. 103/// Implementation of the <see cref="Enumerator.MoveNext"/> and <see cref="Enumerator.Current"/> 156public bool MoveNext() => _enumerator.MoveNext();
Operations\OperationExtensions.cs (1)
103if (!iterator.MoveNext())
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\TestOperationVisitor.cs (2)
81Assert.True(forwards.MoveNext()); 84Assert.True(forwards.MoveNext());