1 implementation of LoopControlVariable
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4392public IOperation LoopControlVariable { get; }
9 references to LoopControlVariable
Microsoft.CodeAnalysis (5)
Operations\ControlFlowGraphBuilder.cs (5)
4785operation.LoopControlVariable.Syntax, loopObject.Type, 4873IOperation condition = tryCallObjectForLoopControlHelper(operation.LoopControlVariable.Syntax, 5425switch (operation.LoopControlVariable.Kind) 5428var declarator = (IVariableDeclaratorOperation)operation.LoopControlVariable; 5437IOperation result = VisitRequired(operation.LoopControlVariable);
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\OperationExtensions.cs (1)
141else if (operation.Parent is IIncrementOrDecrementOperation || (operation.Parent is IForToLoopOperation forToLoopOperation && forToLoopOperation.LoopControlVariable.Equals(operation)))
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
584Visit(operation.LoopControlVariable, "LoopControlVariable");
Compilation\TestOperationVisitor.cs (1)
324children = new[] { operation.LoopControlVariable, operation.InitialValue, operation.LimitValue, operation.StepValue, operation.Body };
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\OperationExtensions.cs (1)
141else if (operation.Parent is IIncrementOrDecrementOperation || (operation.Parent is IForToLoopOperation forToLoopOperation && forToLoopOperation.LoopControlVariable.Equals(operation)))