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)
74
if (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"/>
157
public bool MoveNext() => _enumerator.
MoveNext
();
Operations\OperationExtensions.cs (1)
103
if (!iterator.
MoveNext
())
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\TestOperationVisitor.cs (2)
82
Assert.True(forwards.
MoveNext
());
85
Assert.True(forwards.
MoveNext
());