25 references to ContinueKeyword
Microsoft.CodeAnalysis.CSharp (11)
Parser\LanguageParser.cs (4)
8089case SyntaxKind.ContinueKeyword: 8929case SyntaxKind.ContinueKeyword: 9062this.EatToken(SyntaxKind.ContinueKeyword), 10838case SyntaxKind.ContinueKeyword:
Syntax.xml.Internal.Generated.cs (2)
30859if (continueKeyword.Kind != SyntaxKind.ContinueKeyword) throw new ArgumentException(nameof(continueKeyword)); 36226if (continueKeyword.Kind != SyntaxKind.ContinueKeyword) throw new ArgumentException(nameof(continueKeyword));
Syntax.xml.Main.Generated.cs (3)
4202if (continueKeyword.Kind() != SyntaxKind.ContinueKeyword) throw new ArgumentException(nameof(continueKeyword)); 4209=> SyntaxFactory.ContinueStatement(attributeLists, SyntaxFactory.Token(SyntaxKind.ContinueKeyword), SyntaxFactory.Token(SyntaxKind.SemicolonToken)); 4213=> SyntaxFactory.ContinueStatement(default, SyntaxFactory.Token(SyntaxKind.ContinueKeyword), SyntaxFactory.Token(SyntaxKind.SemicolonToken));
Syntax\SyntaxKindFacts.cs (2)
953return SyntaxKind.ContinueKeyword; 1643case SyntaxKind.ContinueKeyword:
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\CodeGeneration\CSharpSyntaxTokens.cs (1)
27public static readonly SyntaxToken ContinueKeyword = Token(SyntaxKind.ContinueKeyword);
Microsoft.CodeAnalysis.CSharp.Features (3)
Completion\KeywordRecommenders\ContinueKeywordRecommender.cs (1)
13internal sealed class ContinueKeywordRecommender() : AbstractSyntacticSingleKeywordRecommender(SyntaxKind.ContinueKeyword)
GoToDefinition\CSharpGoToDefinitionSymbolService.cs (1)
34case SyntaxKind.ContinueKeyword:
Highlighting\KeywordHighlighters\LoopHighlighter.cs (1)
32or SyntaxKind.ContinueKeyword
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (7)
Generated\Syntax.Test.xml.Generated.cs (4)
380=> InternalSyntaxFactory.ContinueStatement(new Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList<Syntax.InternalSyntax.AttributeListSyntax>(), InternalSyntaxFactory.Token(SyntaxKind.ContinueKeyword), InternalSyntaxFactory.Token(SyntaxKind.SemicolonToken)); 2208Assert.Equal(SyntaxKind.ContinueKeyword, node.ContinueKeyword.Kind); 10730=> SyntaxFactory.ContinueStatement(new SyntaxList<AttributeListSyntax>(), SyntaxFactory.Token(SyntaxKind.ContinueKeyword), SyntaxFactory.Token(SyntaxKind.SemicolonToken)); 12558Assert.Equal(SyntaxKind.ContinueKeyword, node.ContinueKeyword.Kind());
Parsing\DeclarationParsingTests_MissingIdentifiers.cs (1)
4574N(SyntaxKind.ContinueKeyword);
Parsing\StatementAttributeParsingTests.cs (1)
480N(SyntaxKind.ContinueKeyword);
Parsing\StatementParsingTests.cs (1)
1019Assert.Equal(SyntaxKind.ContinueKeyword, cs.ContinueKeyword.Kind());
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Classification\ClassificationHelpers.cs (1)
74case SyntaxKind.ContinueKeyword:
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\CodeGeneration\CSharpSyntaxTokens.cs (1)
27public static readonly SyntaxToken ContinueKeyword = Token(SyntaxKind.ContinueKeyword);
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\CodeGeneration\CSharpSyntaxTokens.cs (1)
27public static readonly SyntaxToken ContinueKeyword = Token(SyntaxKind.ContinueKeyword);