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