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