1 implementation of NextVariables
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4210public ImmutableArray<IOperation> NextVariables { get; }
6 references to NextVariables
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
657VisitArray(operation.NextVariables, "NextVariables", logElementCount: true);
Compilation\TestOperationVisitor.cs (1)
334IEnumerable<IOperation> children = new[] { operation.Collection, operation.LoopControlVariable, operation.Body }.Concat(operation.NextVariables);
Microsoft.CodeAnalysis.VisualBasic.Features (4)
ConvertForEachToFor\VisualBasicConvertForEachToForCodeRefactoringProvider.vb (4)
170If foreachOperation.NextVariables.Length > 1 Then 174If foreachOperation.NextVariables.IsEmpty AndAlso foreachStatement.NextStatement Is Nothing Then 179If Not foreachOperation.NextVariables.IsEmpty Then 180Dim nextVariable = TryCast(foreachOperation.NextVariables(0), ILocalReferenceOperation)