1 write to IsMultiLineStatementContext
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxContext.vb (1)
119Me.IsMultiLineStatementContext = syntaxTree.IsMultiLineStatementStartContext(position, targetToken, cancellationToken)
21 references to IsMultiLineStatementContext
Microsoft.CodeAnalysis.VisualBasic.Features (21)
Completion\KeywordRecommenders\Declarations\ConstKeywordRecommender.vb (1)
21Return If(context.IsMultiLineStatementContext, s_keywords, ImmutableArray(Of RecommendedKeyword).Empty)
Completion\KeywordRecommenders\Declarations\DimKeywordRecommender.vb (1)
23If context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\Declarations\StaticKeywordRecommender.vb (1)
21Return If(context.IsMultiLineStatementContext, s_keywords, ImmutableArray(Of RecommendedKeyword).Empty)
Completion\KeywordRecommenders\EventHandling\RaiseEventKeywordRecommender.vb (1)
18If context.IsStatementContext OrElse context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\OnErrorStatements\ErrorKeywordRecommender.vb (1)
27If context.IsMultiLineStatementContext OrElse context.IsStatementContext Then
Completion\KeywordRecommenders\OnErrorStatements\OnErrorKeywordRecommender.vb (1)
22Return If(context.IsMultiLineStatementContext AndAlso Not context.IsInLambda, s_keywords, ImmutableArray(Of RecommendedKeyword).Empty)
Completion\KeywordRecommenders\OnErrorStatements\ResumeKeywordRecommender.vb (1)
30If context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\Statements\CaseKeywordRecommender.vb (1)
32Not (context.IsMultiLineStatementContext OrElse context.IsAfterStatementOfKind(SyntaxKind.SelectStatement)) Then
Completion\KeywordRecommenders\Statements\CatchKeywordRecommender.vb (1)
21If Not context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\Statements\ContinueKeywordRecommender.vb (1)
21If context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\Statements\DoKeywordRecommender.vb (1)
18If context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\Statements\FinallyKeywordRecommender.vb (1)
23If Not context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\Statements\ForKeywordRecommender.vb (1)
18If context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\Statements\GoToKeywordRecommender.vb (1)
21Return If(context.IsMultiLineStatementContext AndAlso Not context.IsInStatementBlockOfKind(SyntaxKind.FinallyBlock),
Completion\KeywordRecommenders\Statements\SelectKeywordRecommender.vb (1)
18If context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\Statements\SyncLockKeywordRecommender.vb (1)
21Return If(context.IsMultiLineStatementContext, s_keywords, ImmutableArray(Of RecommendedKeyword).Empty)
Completion\KeywordRecommenders\Statements\TryKeywordRecommender.vb (1)
18If context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\Statements\UsingKeywordRecommender.vb (1)
21Return If(context.IsMultiLineStatementContext, s_keywords, ImmutableArray(Of RecommendedKeyword).Empty)
Completion\KeywordRecommenders\Statements\WhileLoopKeywordRecommender.vb (1)
19If context.IsMultiLineStatementContext Then
Completion\KeywordRecommenders\Statements\WithKeywordRecommender.vb (1)
21Return If(context.IsMultiLineStatementContext, s_keywords, ImmutableArray(Of RecommendedKeyword).Empty)
Completion\KeywordRecommenders\Statements\YieldKeywordRecommender.vb (1)
21Return If(context.IsMultiLineStatementContext, s_keywords, ImmutableArray(Of RecommendedKeyword).Empty)