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