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