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