8 instantiations of ForStepClauseSyntax
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Internal.Generated.vb (7)
17768
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
ForStepClauseSyntax
(o)
17778
ObjectBinder.RegisterTypeReader(GetType(ForStepClauseSyntax), Function(r) New
ForStepClauseSyntax
(r))
17817
Return new
ForStepClauseSyntax
(Me.Kind, newErrors, GetAnnotations, _stepKeyword, _stepValue)
17821
Return new
ForStepClauseSyntax
(Me.Kind, GetDiagnostics, annotations, _stepKeyword, _stepValue)
39765
Return New
ForStepClauseSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newStepKeyword, newStepValue)
48295
Dim result = New
ForStepClauseSyntax
(SyntaxKind.ForStepClause, stepKeyword, stepValue)
60373
Dim result = New
ForStepClauseSyntax
(SyntaxKind.ForStepClause, stepKeyword, stepValue, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
19361
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ForStepClauseSyntax
(kind, errors, annotations, stepKeyword, DirectCast(stepValue.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
20 references to ForStepClauseSyntax
Microsoft.CodeAnalysis.VisualBasic (19)
Generated\Syntax.xml.Internal.Generated.vb (16)
17517
Friend ReadOnly _stepClause as
ForStepClauseSyntax
17519
Friend Sub New(ByVal kind As SyntaxKind, forKeyword As InternalSyntax.KeywordSyntax, controlVariable As VisualBasicSyntaxNode, equalsToken As InternalSyntax.PunctuationSyntax, fromValue As ExpressionSyntax, toKeyword As InternalSyntax.KeywordSyntax, toValue As ExpressionSyntax, stepClause As
ForStepClauseSyntax
)
17538
Friend Sub New(ByVal kind As SyntaxKind, forKeyword As InternalSyntax.KeywordSyntax, controlVariable As VisualBasicSyntaxNode, equalsToken As InternalSyntax.PunctuationSyntax, fromValue As ExpressionSyntax, toKeyword As InternalSyntax.KeywordSyntax, toValue As ExpressionSyntax, stepClause As
ForStepClauseSyntax
, context As ISyntaxFactoryContext)
17558
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), forKeyword As InternalSyntax.KeywordSyntax, controlVariable As VisualBasicSyntaxNode, equalsToken As InternalSyntax.PunctuationSyntax, fromValue As ExpressionSyntax, toKeyword As InternalSyntax.KeywordSyntax, toValue As ExpressionSyntax, stepClause As
ForStepClauseSyntax
)
17600
Dim _stepClause = DirectCast(reader.ReadValue(),
ForStepClauseSyntax
)
17668
Friend ReadOnly Property StepClause As InternalSyntax.
ForStepClauseSyntax
17778
ObjectBinder.RegisterTypeReader(GetType(
ForStepClauseSyntax
), Function(r) New ForStepClauseSyntax(r))
37156
Public Overridable Function VisitForStepClause(ByVal node As
ForStepClauseSyntax
) As VisualBasicSyntaxNode
39746
Dim newStepClause = DirectCast(Visit(node._stepClause),
ForStepClauseSyntax
)
39756
Public Overrides Function VisitForStepClause(ByVal node As
ForStepClauseSyntax
) As VisualBasicSyntaxNode
48265
Friend Shared Function ForStatement(forKeyword As KeywordSyntax, controlVariable As VisualBasicSyntaxNode, equalsToken As PunctuationSyntax, fromValue As ExpressionSyntax, toKeyword As KeywordSyntax, toValue As ExpressionSyntax, stepClause As
ForStepClauseSyntax
) As ForStatementSyntax
48285
Friend Shared Function ForStepClause(stepKeyword As KeywordSyntax, stepValue As ExpressionSyntax) As
ForStepClauseSyntax
48292
Return DirectCast(cached,
ForStepClauseSyntax
)
60343
Friend Function ForStatement(forKeyword As KeywordSyntax, controlVariable As VisualBasicSyntaxNode, equalsToken As PunctuationSyntax, fromValue As ExpressionSyntax, toKeyword As KeywordSyntax, toValue As ExpressionSyntax, stepClause As
ForStepClauseSyntax
) As ForStatementSyntax
60363
Friend Function ForStepClause(stepKeyword As KeywordSyntax, stepValue As ExpressionSyntax) As
ForStepClauseSyntax
60370
Return DirectCast(cached,
ForStepClauseSyntax
)
Generated\Syntax.xml.Syntax.Generated.vb (2)
19111
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForStatementSyntax(kind, errors, annotations, forKeyword, DirectCast(controlVariable.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.VisualBasicSyntaxNode), equalsToken, DirectCast(fromValue.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), toKeyword, DirectCast(toValue.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), if(stepClause IsNot Nothing, DirectCast(stepClause.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ForStepClauseSyntax
), Nothing)), Nothing, 0)
19369
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ForStepClauseSyntax
)._stepKeyword, Me.Position, 0)
Parser\ParseStatement.vb (1)
686
Dim optionalStepClause As
ForStepClauseSyntax
= Nothing
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
763
Private Shared Function GenerateGreenForStepClause() As InternalSyntax.
ForStepClauseSyntax