9 references to ThenKeyword
Microsoft.CodeAnalysis.VisualBasic (5)
Generated\Syntax.xml.Main.Generated.vb (2)
2975Dim newThenKeyword = DirectCast(VisitToken(node.ThenKeyword).Node, InternalSyntax.KeywordSyntax) 2976If node.ThenKeyword.Node IsNot newThenKeyword Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (3)
14758return Update(ifKeyword, Me.Condition, Me.ThenKeyword) 14776return Update(Me.IfKeyword, condition, Me.ThenKeyword) 14845If ifKeyword <> Me.IfKeyword OrElse condition IsNot Me.Condition OrElse thenKeyword <> Me.ThenKeyword Then
Microsoft.CodeAnalysis.VisualBasic.Features (3)
Highlighting\KeywordHighlighters\MultiLineIfBlockHighlighter.vb (2)
27If .ThenKeyword.Kind <> SyntaxKind.None Then 28highlights.Add(.ThenKeyword.Span)
SplitOrMergeIfStatements\VisualBasicIfLikeStatementGenerator.vb (1)
169ifBlock.IfStatement.ThenKeyword)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
CodeCleanup\Providers\AddMissingTokensCodeCleanupProvider.vb (1)
530If Exist(ifStatement.Condition) AndAlso ifStatement.ThenKeyword = originalToken Then