5 references to IsBreakableConstruct
Microsoft.CodeAnalysis.CSharp.Features (5)
Completion\KeywordRecommenders\BreakKeywordRecommender.cs (1)
41if (v.IsBreakableConstruct())
GoToDefinition\CSharpGoToDefinitionSymbolService.cs (2)
49return foundBrokenLoop?.IsBreakableConstruct() == true 110while (node is not null && !node.IsBreakableConstruct())
Highlighting\KeywordHighlighters\LoopHighlighter.cs (1)
98var highlightBreaksForChild = highlightBreaks && !child.IsBreakableConstruct();
Highlighting\KeywordHighlighters\SwitchStatementHighlighter.cs (1)
91var highlightBreaksForChild = highlightBreaks && !child.IsBreakableConstruct();