18 references to StepClause
Microsoft.CodeAnalysis.VisualBasic (15)
Binding\Binder_Statements.vb (4)
3122
forStatement.
StepClause
,
3156
Dim stepClause = forStatement.
StepClause
3175
isExplicit:=forStatement.
StepClause
Is Nothing,
3179
forStatement.
StepClause
Is Nothing Then
Binding\ForOrForEachBlockBinder.vb (1)
116
forStatementSyntax.
StepClause
)
Generated\Syntax.xml.Main.Generated.vb (2)
3491
Dim newStepClause = DirectCast(Visit(node.
StepClause
), ForStepClauseSyntax)
3492
If node.
StepClause
IsNot newStepClause Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (8)
19137
return Update(forKeyword, Me.ControlVariable, Me.EqualsToken, Me.FromValue, Me.ToKeyword, Me.ToValue, Me.
StepClause
)
19166
return Update(Me.ForKeyword, controlVariable, Me.EqualsToken, Me.FromValue, Me.ToKeyword, Me.ToValue, Me.
StepClause
)
19184
return Update(Me.ForKeyword, Me.ControlVariable, equalsToken, Me.FromValue, Me.ToKeyword, Me.ToValue, Me.
StepClause
)
19202
return Update(Me.ForKeyword, Me.ControlVariable, Me.EqualsToken, fromValue, Me.ToKeyword, Me.ToValue, Me.
StepClause
)
19220
return Update(Me.ForKeyword, Me.ControlVariable, Me.EqualsToken, Me.FromValue, toKeyword, Me.ToValue, Me.
StepClause
)
19238
return Update(Me.ForKeyword, Me.ControlVariable, Me.EqualsToken, Me.FromValue, Me.ToKeyword, toValue, Me.
StepClause
)
19286
Return Me.
StepClause
19327
If forKeyword <> Me.ForKeyword OrElse controlVariable IsNot Me.ControlVariable OrElse equalsToken <> Me.EqualsToken OrElse fromValue IsNot Me.FromValue OrElse toKeyword <> Me.ToKeyword OrElse toValue IsNot Me.ToValue OrElse stepClause IsNot Me.
StepClause
Then
Microsoft.CodeAnalysis.VisualBasic.Features (3)
ConvertForToForEach\VisualBasicConvertForToForEachCodeRefactoringProvider.vb (1)
67
stepValueExpressionOpt = forStatement.
StepClause
?.StepValue
Highlighting\KeywordHighlighters\ForLoopBlockHighlighter.vb (2)
32
If .
StepClause
IsNot Nothing Then
33
highlights.Add(.
StepClause
.StepKeyword.Span)