6 references to ThenKeyword
Microsoft.CodeAnalysis.VisualBasic (6)
Generated\Syntax.xml.Internal.Generated.vb (1)
31302
Dim newThenKeyword = DirectCast(Visit(node.
ThenKeyword
), KeywordSyntax)
Parser\BlockContexts\BlockContext.vb (1)
439
If ifStmt.
ThenKeyword
IsNot Nothing AndAlso Not SyntaxFacts.IsTerminator(Parser.CurrentToken.Kind) Then
Parser\BlockContexts\SingleLineElseContext.vb (1)
32
If ifStmt.
ThenKeyword
IsNot Nothing AndAlso Not SyntaxFacts.IsTerminator(Parser.CurrentToken.Kind) Then
Parser\BlockContexts\SingleLineIfBlockContext.vb (3)
22
Debug.Assert(DirectCast(statement, IfStatementSyntax).
ThenKeyword
IsNot Nothing)
32
If ifStmt.
ThenKeyword
IsNot Nothing AndAlso Not SyntaxFacts.IsTerminator(Parser.CurrentToken.Kind) Then
73
Dim result = SyntaxFactory.SingleLineIfStatement(ifStatement.IfKeyword, ifStatement.Condition, ifStatement.
ThenKeyword
, Body(), _optionalElseClause)