13 references to StepValue
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\ControlFlowGraphVerifier.cs (2)
1041assignment.Value.Syntax == forStmt.StepClause.StepValue) 1265if (((ForStepClauseSyntax)parent).StepValue == syntax)
Microsoft.CodeAnalysis.VisualBasic (7)
Binding\Binder_Statements.vb (2)
1462stepValueExpression = binder.BindRValue(stepClauseSyntaxOpt.StepValue, diagnostics) 3130stepValue = BindValue(stepClause.StepValue, diagnostics)
Generated\Syntax.xml.Main.Generated.vb (2)
3506Dim newStepValue = DirectCast(Visit(node.StepValue), ExpressionSyntax) 3507If node.StepValue IsNot newStepValue Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (3)
19379return Update(stepKeyword, Me.StepValue) 19412Return Me.StepValue 19438If stepKeyword <> Me.StepKeyword OrElse stepValue IsNot Me.StepValue Then
Microsoft.CodeAnalysis.VisualBasic.Features (1)
ConvertForToForEach\VisualBasicConvertForToForEachCodeRefactoringProvider.vb (1)
68stepValueExpressionOpt = forStatement.StepClause?.StepValue
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (1)
Semantics\ForLoopTest.vb (1)
555Dim expressionStep = If(node.StepClause Is Nothing, Nothing, node.StepClause.StepValue)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
20113Assert.NotNull(objectUnderTest.stepValue) 20114Dim withObj = objectUnderTest.WithStepKeyword(objectUnderTest.StepKeyword).WithStepValue(objectUnderTest.StepValue)