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