8 instantiations of SelectStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Internal.Generated.vb (7)
15501
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
SelectStatementSyntax
(o)
15512
ObjectBinder.RegisterTypeReader(GetType(SelectStatementSyntax), Function(r) New
SelectStatementSyntax
(r))
15565
Return new
SelectStatementSyntax
(Me.Kind, newErrors, GetAnnotations, _selectKeyword, _caseKeyword, _expression)
15569
Return new
SelectStatementSyntax
(Me.Kind, GetDiagnostics, annotations, _selectKeyword, _caseKeyword, _expression)
39509
Return New
SelectStatementSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newSelectKeyword, newCaseKeyword, newExpression)
47145
Dim result = New
SelectStatementSyntax
(SyntaxKind.SelectStatement, selectKeyword, caseKeyword, expression)
59223
Dim result = New
SelectStatementSyntax
(SyntaxKind.SelectStatement, selectKeyword, caseKeyword, expression, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
16984
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
SelectStatementSyntax
(kind, errors, annotations, selectKeyword, caseKeyword, DirectCast(expression.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
22 references to SelectStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (21)
Generated\Syntax.xml.Internal.Generated.vb (16)
15279
Friend ReadOnly _selectStatement as
SelectStatementSyntax
15283
Friend Sub New(ByVal kind As SyntaxKind, selectStatement As
SelectStatementSyntax
, caseBlocks As GreenNode, endSelectStatement As EndBlockStatementSyntax)
15298
Friend Sub New(ByVal kind As SyntaxKind, selectStatement As
SelectStatementSyntax
, caseBlocks As GreenNode, endSelectStatement As EndBlockStatementSyntax, context As ISyntaxFactoryContext)
15314
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), selectStatement As
SelectStatementSyntax
, caseBlocks As GreenNode, endSelectStatement As EndBlockStatementSyntax)
15332
Dim _selectStatement = DirectCast(reader.ReadValue(),
SelectStatementSyntax
)
15369
Friend ReadOnly Property SelectStatement As InternalSyntax.
SelectStatementSyntax
15512
ObjectBinder.RegisterTypeReader(GetType(
SelectStatementSyntax
), Function(r) New SelectStatementSyntax(r))
37080
Public Overridable Function VisitSelectStatement(ByVal node As
SelectStatementSyntax
) As VisualBasicSyntaxNode
39484
Dim newSelectStatement = DirectCast(Visit(node._selectStatement),
SelectStatementSyntax
)
39498
Public Overrides Function VisitSelectStatement(ByVal node As
SelectStatementSyntax
) As VisualBasicSyntaxNode
47103
Friend Shared Function SelectBlock(selectStatement As
SelectStatementSyntax
, caseBlocks As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endSelectStatement As EndBlockStatementSyntax) As SelectBlockSyntax
47135
Friend Shared Function SelectStatement(selectKeyword As KeywordSyntax, caseKeyword As KeywordSyntax, expression As ExpressionSyntax) As
SelectStatementSyntax
47142
Return DirectCast(cached,
SelectStatementSyntax
)
59181
Friend Function SelectBlock(selectStatement As
SelectStatementSyntax
, caseBlocks As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endSelectStatement As EndBlockStatementSyntax) As SelectBlockSyntax
59213
Friend Function SelectStatement(selectKeyword As KeywordSyntax, caseKeyword As KeywordSyntax, expression As ExpressionSyntax) As
SelectStatementSyntax
59220
Return DirectCast(cached,
SelectStatementSyntax
)
Generated\Syntax.xml.Syntax.Generated.vb (3)
16835
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SelectBlockSyntax(kind, errors, annotations, DirectCast(selectStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
SelectStatementSyntax
), if(caseBlocks IsNot Nothing, caseBlocks.Green, Nothing), DirectCast(endSelectStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
16992
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
SelectStatementSyntax
)._selectKeyword, Me.Position, 0)
17013
Dim slot = DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
SelectStatementSyntax
)._caseKeyword
Parser\BlockContexts\SelectBlockContext.vb (1)
89
Dim beginBlockStmt As
SelectStatementSyntax
= Nothing
Parser\ParseStatement.vb (1)
372
Private Function ParseSelectStatement() As
SelectStatementSyntax
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
635
Private Shared Function GenerateGreenSelectStatement() As InternalSyntax.
SelectStatementSyntax