10 references to IsContinuableConstruct
Microsoft.CodeAnalysis.CSharp.Features (9)
Completion\KeywordRecommenders\ContinueKeywordRecommender.cs (1)
34if (v.IsContinuableConstruct())
Highlighting\KeywordHighlighters\LoopHighlighter.cs (2)
36=> node.IsContinuableConstruct(); 107var highlightContinuesForChild = highlightContinues && !child.IsContinuableConstruct();
src\roslyn\src\Analyzers\CSharp\Analyzers\UseLabeledJumpStatements\CSharpUseLabeledJumpStatementsHelpers_FlagVariable.cs (4)
85!innerLoop.IsContinuableConstruct()) 177if (current.IsContinuableConstruct()) 205!containingLoop.IsContinuableConstruct()) 367if (isBreak ? current.IsBreakableConstruct() : current.IsContinuableConstruct())
src\roslyn\src\Analyzers\CSharp\Analyzers\UseLabeledJumpStatements\CSharpUseLabeledJumpStatementsHelpers.cs (2)
99candidateLoop.IsContinuableConstruct() && 194if (includeSwitch ? current.IsBreakableConstruct() : current.IsContinuableConstruct())
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxNodeExtensions.cs (1)
396=> node.IsContinuableConstruct() || node?.Kind() is SyntaxKind.SwitchStatement;