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