8 instantiations of ElseIfStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Internal.Generated.vb (7)
13377
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
ElseIfStatementSyntax
(o)
13388
ObjectBinder.RegisterTypeReader(GetType(ElseIfStatementSyntax), Function(r) New
ElseIfStatementSyntax
(r))
13441
Return new
ElseIfStatementSyntax
(Me.Kind, newErrors, GetAnnotations, _elseIfKeyword, _condition, _thenKeyword)
13445
Return new
ElseIfStatementSyntax
(Me.Kind, GetDiagnostics, annotations, _elseIfKeyword, _condition, _thenKeyword)
39266
Return New
ElseIfStatementSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newElseIfKeyword, newCondition, newThenKeyword)
46591
Dim result = New
ElseIfStatementSyntax
(SyntaxKind.ElseIfStatement, elseIfKeyword, condition, thenKeyword)
58669
Dim result = New
ElseIfStatementSyntax
(SyntaxKind.ElseIfStatement, elseIfKeyword, condition, thenKeyword, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
15004
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ElseIfStatementSyntax
(kind, errors, annotations, elseIfKeyword, DirectCast(condition.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), thenKeyword), Nothing, 0)
21 references to ElseIfStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (20)
Generated\Syntax.xml.Internal.Generated.vb (16)
13179
Friend ReadOnly _elseIfStatement as
ElseIfStatementSyntax
13182
Friend Sub New(ByVal kind As SyntaxKind, elseIfStatement As
ElseIfStatementSyntax
, statements As GreenNode)
13195
Friend Sub New(ByVal kind As SyntaxKind, elseIfStatement As
ElseIfStatementSyntax
, statements As GreenNode, context As ISyntaxFactoryContext)
13209
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), elseIfStatement As
ElseIfStatementSyntax
, statements As GreenNode)
13225
Dim _elseIfStatement = DirectCast(reader.ReadValue(),
ElseIfStatementSyntax
)
13256
Friend ReadOnly Property ElseIfStatement As InternalSyntax.
ElseIfStatementSyntax
13388
ObjectBinder.RegisterTypeReader(GetType(
ElseIfStatementSyntax
), Function(r) New ElseIfStatementSyntax(r))
37020
Public Overridable Function VisitElseIfStatement(ByVal node As
ElseIfStatementSyntax
) As VisualBasicSyntaxNode
39243
Dim newElseIfStatement = DirectCast(Visit(node._elseIfStatement),
ElseIfStatementSyntax
)
39255
Public Overrides Function VisitElseIfStatement(ByVal node As
ElseIfStatementSyntax
) As VisualBasicSyntaxNode
46551
Friend Shared Function ElseIfBlock(elseIfStatement As
ElseIfStatementSyntax
, statements As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode)) As ElseIfBlockSyntax
46581
Friend Shared Function ElseIfStatement(elseIfKeyword As KeywordSyntax, condition As ExpressionSyntax, thenKeyword As KeywordSyntax) As
ElseIfStatementSyntax
46588
Return DirectCast(cached,
ElseIfStatementSyntax
)
58629
Friend Function ElseIfBlock(elseIfStatement As
ElseIfStatementSyntax
, statements As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode)) As ElseIfBlockSyntax
58659
Friend Function ElseIfStatement(elseIfKeyword As KeywordSyntax, condition As ExpressionSyntax, thenKeyword As KeywordSyntax) As
ElseIfStatementSyntax
58666
Return DirectCast(cached,
ElseIfStatementSyntax
)
Generated\Syntax.xml.Syntax.Generated.vb (3)
14880
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseIfBlockSyntax(kind, errors, annotations, DirectCast(elseIfStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ElseIfStatementSyntax
), if(statements IsNot Nothing, statements.Green, Nothing)), Nothing, 0)
15012
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ElseIfStatementSyntax
)._elseIfKeyword, Me.Position, 0)
15051
Dim slot = DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ElseIfStatementSyntax
)._thenKeyword
Parser\BlockContexts\IfPartContext.vb (1)
60
result = SyntaxFactory.ElseIfBlock(DirectCast(BeginStatement,
ElseIfStatementSyntax
), Body())
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
559
Private Shared Function GenerateGreenElseIfStatement() As InternalSyntax.
ElseIfStatementSyntax