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