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