8 instantiations of WhileStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Internal.Generated.vb (7)
17055
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
WhileStatementSyntax
(o)
17065
ObjectBinder.RegisterTypeReader(GetType(WhileStatementSyntax), Function(r) New
WhileStatementSyntax
(r))
17104
Return new
WhileStatementSyntax
(Me.Kind, newErrors, GetAnnotations, _whileKeyword, _condition)
17108
Return new
WhileStatementSyntax
(Me.Kind, GetDiagnostics, annotations, _whileKeyword, _condition)
39691
Return New
WhileStatementSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newWhileKeyword, newCondition)
48156
Dim result = New
WhileStatementSyntax
(SyntaxKind.WhileStatement, whileKeyword, condition)
60234
Dim result = New
WhileStatementSyntax
(SyntaxKind.WhileStatement, whileKeyword, condition, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
18479
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
WhileStatementSyntax
(kind, errors, annotations, whileKeyword, DirectCast(condition.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
20 references to WhileStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (19)
Generated\Syntax.xml.Internal.Generated.vb (16)
10919
Friend ReadOnly _whileStatement as
WhileStatementSyntax
10923
Friend Sub New(ByVal kind As SyntaxKind, whileStatement As
WhileStatementSyntax
, statements As GreenNode, endWhileStatement As EndBlockStatementSyntax)
10938
Friend Sub New(ByVal kind As SyntaxKind, whileStatement As
WhileStatementSyntax
, statements As GreenNode, endWhileStatement As EndBlockStatementSyntax, context As ISyntaxFactoryContext)
10954
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), whileStatement As
WhileStatementSyntax
, statements As GreenNode, endWhileStatement As EndBlockStatementSyntax)
10972
Dim _whileStatement = DirectCast(reader.ReadValue(),
WhileStatementSyntax
)
11009
Friend ReadOnly Property WhileStatement As InternalSyntax.
WhileStatementSyntax
17065
ObjectBinder.RegisterTypeReader(GetType(
WhileStatementSyntax
), Function(r) New WhileStatementSyntax(r))
37132
Public Overridable Function VisitWhileStatement(ByVal node As
WhileStatementSyntax
) As VisualBasicSyntaxNode
38985
Dim newWhileStatement = DirectCast(Visit(node._whileStatement),
WhileStatementSyntax
)
39682
Public Overrides Function VisitWhileStatement(ByVal node As
WhileStatementSyntax
) As VisualBasicSyntaxNode
45582
Friend Shared Function WhileBlock(whileStatement As
WhileStatementSyntax
, statements As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endWhileStatement As EndBlockStatementSyntax) As WhileBlockSyntax
48146
Friend Shared Function WhileStatement(whileKeyword As KeywordSyntax, condition As ExpressionSyntax) As
WhileStatementSyntax
48153
Return DirectCast(cached,
WhileStatementSyntax
)
57660
Friend Function WhileBlock(whileStatement As
WhileStatementSyntax
, statements As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endWhileStatement As EndBlockStatementSyntax) As WhileBlockSyntax
60224
Friend Function WhileStatement(whileKeyword As KeywordSyntax, condition As ExpressionSyntax) As
WhileStatementSyntax
60231
Return DirectCast(cached,
WhileStatementSyntax
)
Generated\Syntax.xml.Syntax.Generated.vb (2)
12723
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhileBlockSyntax(kind, errors, annotations, DirectCast(whileStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
WhileStatementSyntax
), if(statements IsNot Nothing, statements.Green, Nothing), DirectCast(endWhileStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
18487
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
WhileStatementSyntax
)._whileKeyword, Me.Position, 0)
Parser\BlockContexts\StatementBlockContext.vb (1)
26
Dim beginStmt As
WhileStatementSyntax
= Nothing
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
747
Private Shared Function GenerateGreenWhileStatement() As InternalSyntax.
WhileStatementSyntax