8 instantiations of ElseStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Internal.Generated.vb (7)
13627
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
ElseStatementSyntax
(o)
13636
ObjectBinder.RegisterTypeReader(GetType(ElseStatementSyntax), Function(r) New
ElseStatementSyntax
(r))
13663
Return new
ElseStatementSyntax
(Me.Kind, newErrors, GetAnnotations, _elseKeyword)
13667
Return new
ElseStatementSyntax
(Me.Kind, GetDiagnostics, annotations, _elseKeyword)
39294
Return New
ElseStatementSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newElseKeyword)
46642
Dim result = New
ElseStatementSyntax
(SyntaxKind.ElseStatement, elseKeyword)
58720
Dim result = New
ElseStatementSyntax
(SyntaxKind.ElseStatement, elseKeyword, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
15266
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ElseStatementSyntax
(kind, errors, annotations, elseKeyword), Nothing, 0)
22 references to ElseStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (21)
Generated\Syntax.xml.Internal.Generated.vb (16)
13460
Friend ReadOnly _elseStatement as
ElseStatementSyntax
13463
Friend Sub New(ByVal kind As SyntaxKind, elseStatement As
ElseStatementSyntax
, statements As GreenNode)
13476
Friend Sub New(ByVal kind As SyntaxKind, elseStatement As
ElseStatementSyntax
, statements As GreenNode, context As ISyntaxFactoryContext)
13490
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), elseStatement As
ElseStatementSyntax
, statements As GreenNode)
13506
Dim _elseStatement = DirectCast(reader.ReadValue(),
ElseStatementSyntax
)
13537
Friend ReadOnly Property ElseStatement As InternalSyntax.
ElseStatementSyntax
13636
ObjectBinder.RegisterTypeReader(GetType(
ElseStatementSyntax
), Function(r) New ElseStatementSyntax(r))
37028
Public Overridable Function VisitElseStatement(ByVal node As
ElseStatementSyntax
) As VisualBasicSyntaxNode
39275
Dim newElseStatement = DirectCast(Visit(node._elseStatement),
ElseStatementSyntax
)
39287
Public Overrides Function VisitElseStatement(ByVal node As
ElseStatementSyntax
) As VisualBasicSyntaxNode
46609
Friend Shared Function ElseBlock(elseStatement As
ElseStatementSyntax
, statements As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode)) As ElseBlockSyntax
46633
Friend Shared Function ElseStatement(elseKeyword As KeywordSyntax) As
ElseStatementSyntax
46639
Return DirectCast(cached,
ElseStatementSyntax
)
58687
Friend Function ElseBlock(elseStatement As
ElseStatementSyntax
, statements As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode)) As ElseBlockSyntax
58711
Friend Function ElseStatement(elseKeyword As KeywordSyntax) As
ElseStatementSyntax
58717
Return DirectCast(cached,
ElseStatementSyntax
)
Generated\Syntax.xml.Syntax.Generated.vb (2)
15144
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseBlockSyntax(kind, errors, annotations, DirectCast(elseStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ElseStatementSyntax
), if(statements IsNot Nothing, statements.Green, Nothing)), Nothing, 0)
15274
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ElseStatementSyntax
)._elseKeyword, Me.Position, 0)
Parser\BlockContexts\IfPartContext.vb (1)
58
result = SyntaxFactory.ElseBlock(DirectCast(BeginStatement,
ElseStatementSyntax
), Body())
Parser\BlockContexts\SingleLineElseContext.vb (1)
62
Dim elseStatement = DirectCast(BeginStatement,
ElseStatementSyntax
)
Parser\ParseStatement.vb (1)
429
Private Function ParseElseStatement() As
ElseStatementSyntax
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
567
Private Shared Function GenerateGreenElseStatement() As InternalSyntax.
ElseStatementSyntax