6 references to IsBreakableConstruct
Microsoft.CodeAnalysis.CSharp.Features (6)
Completion\KeywordRecommenders\BreakKeywordRecommender.cs (1)
41if (v.IsBreakableConstruct())
Highlighting\KeywordHighlighters\LoopHighlighter.cs (1)
106var highlightBreaksForChild = highlightBreaks && !child.IsBreakableConstruct();
Highlighting\KeywordHighlighters\SwitchStatementHighlighter.cs (1)
96var highlightBreaksForChild = highlightBreaks && !child.IsBreakableConstruct();
src\roslyn\src\Analyzers\CSharp\Analyzers\UseLabeledJumpStatements\CSharpUseLabeledJumpStatementsHelpers_FlagVariable.cs (1)
367if (isBreak ? current.IsBreakableConstruct() : current.IsContinuableConstruct())
src\roslyn\src\Analyzers\CSharp\Analyzers\UseLabeledJumpStatements\CSharpUseLabeledJumpStatementsHelpers.cs (2)
51if (!precedingConstruct.IsBreakableConstruct()) 194if (includeSwitch ? current.IsBreakableConstruct() : current.IsContinuableConstruct())