24 references to StepClause
Microsoft.CodeAnalysis.Test.Utilities (1)
Compilation\ControlFlowGraphVerifier.cs (1)
1041assignment.Value.Syntax == forStmt.StepClause.StepValue)
Microsoft.CodeAnalysis.VisualBasic (15)
Binding\Binder_Statements.vb (4)
3093forStatement.StepClause, 3127Dim stepClause = forStatement.StepClause 3146isExplicit:=forStatement.StepClause Is Nothing, 3150forStatement.StepClause Is Nothing Then
Binding\ForOrForEachBlockBinder.vb (1)
116forStatementSyntax.StepClause)
Generated\Syntax.xml.Main.Generated.vb (2)
3491Dim newStepClause = DirectCast(Visit(node.StepClause), ForStepClauseSyntax) 3492If node.StepClause IsNot newStepClause Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (8)
19137return Update(forKeyword, Me.ControlVariable, Me.EqualsToken, Me.FromValue, Me.ToKeyword, Me.ToValue, Me.StepClause) 19166return Update(Me.ForKeyword, controlVariable, Me.EqualsToken, Me.FromValue, Me.ToKeyword, Me.ToValue, Me.StepClause) 19184return Update(Me.ForKeyword, Me.ControlVariable, equalsToken, Me.FromValue, Me.ToKeyword, Me.ToValue, Me.StepClause) 19202return Update(Me.ForKeyword, Me.ControlVariable, Me.EqualsToken, fromValue, Me.ToKeyword, Me.ToValue, Me.StepClause) 19220return Update(Me.ForKeyword, Me.ControlVariable, Me.EqualsToken, Me.FromValue, toKeyword, Me.ToValue, Me.StepClause) 19238return Update(Me.ForKeyword, Me.ControlVariable, Me.EqualsToken, Me.FromValue, Me.ToKeyword, toValue, Me.StepClause) 19286Return Me.StepClause 19327If 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)
68stepValueExpressionOpt = forStatement.StepClause?.StepValue
Highlighting\KeywordHighlighters\ForLoopBlockHighlighter.vb (2)
32If .StepClause IsNot Nothing Then 33highlights.Add(.StepClause.StepKeyword.Span)
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (3)
Semantics\ForLoopTest.vb (3)
555Dim expressionStep = If(node.StepClause Is Nothing, Nothing, node.StepClause.StepValue) 558Dim semanticInfoStep = If(node.StepClause Is Nothing, Nothing, CompilationUtils.GetSemanticInfoSummary(model, expressionStep))
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
20105Dim withObj = objectUnderTest.WithForKeyword(objectUnderTest.ForKeyword).WithControlVariable(objectUnderTest.ControlVariable).WithEqualsToken(objectUnderTest.EqualsToken).WithFromValue(objectUnderTest.FromValue).WithToKeyword(objectUnderTest.ToKeyword).WithToValue(objectUnderTest.ToValue).WithStepClause(objectUnderTest.StepClause)
Microsoft.VisualStudio.LanguageServices.VisualBasic (1)
Help\VisualBasicHelpContextService.Visitor.vb (1)
265ElseIf node.StepClause.StepKeyword.Span.IntersectsWith(_span) Then