5 references to IsContinuableConstruct
Microsoft.CodeAnalysis.CSharp.Features (5)
Completion\KeywordRecommenders\ContinueKeywordRecommender.cs (1)
38
if (v.
IsContinuableConstruct
())
GoToDefinition\CSharpGoToDefinitionSymbolService.cs (2)
35
return foundContinuedLoop?.
IsContinuableConstruct
() == true
75
while (node is not null && !node.
IsContinuableConstruct
())
Highlighting\KeywordHighlighters\LoopHighlighter.cs (2)
30
=> node.
IsContinuableConstruct
();
93
var highlightContinuesForChild = highlightContinues && !child.
IsContinuableConstruct
();