18 references to GotoKeyword
Microsoft.CodeAnalysis.CSharp (12)
_generated\0\Syntax.xml.Main.Generated.cs (3)
4199if (gotoKeyword.Kind() != SyntaxKind.GotoKeyword) throw new ArgumentException(nameof(gotoKeyword)); 4213=> SyntaxFactory.GotoStatement(kind, attributeLists, SyntaxFactory.Token(SyntaxKind.GotoKeyword), caseOrDefaultKeyword, expression, SyntaxFactory.Token(SyntaxKind.SemicolonToken)); 4218=> SyntaxFactory.GotoStatement(kind, default, SyntaxFactory.Token(SyntaxKind.GotoKeyword), default, expression, SyntaxFactory.Token(SyntaxKind.SemicolonToken));
_generated\1\Syntax.xml.Internal.Generated.cs (2)
31181if (gotoKeyword.Kind != SyntaxKind.GotoKeyword) throw new ArgumentException(nameof(gotoKeyword)); 36608if (gotoKeyword.Kind != SyntaxKind.GotoKeyword) throw new ArgumentException(nameof(gotoKeyword));
Parser\LanguageParser.cs (5)
8378case SyntaxKind.GotoKeyword: 9258case SyntaxKind.GotoKeyword: 9990Debug.Assert(this.CurrentToken.Kind == SyntaxKind.GotoKeyword); 9992var @goto = this.EatToken(SyntaxKind.GotoKeyword); 11198case SyntaxKind.GotoKeyword:
Syntax\SyntaxKindFacts.cs (2)
953return SyntaxKind.GotoKeyword; 1652case SyntaxKind.GotoKeyword:
Microsoft.CodeAnalysis.CSharp.Features (4)
Completion\KeywordRecommenders\CaseKeywordRecommender.cs (1)
25if (token.Kind() == SyntaxKind.GotoKeyword &&
Completion\KeywordRecommenders\GotoKeywordRecommender.cs (1)
10internal sealed class GotoKeywordRecommender() : AbstractSyntacticSingleKeywordRecommender(SyntaxKind.GotoKeyword)
GoToDefinition\CSharpGoToDefinitionSymbolService.cs (1)
72case SyntaxKind.GotoKeyword:
Highlighting\KeywordHighlighters\SwitchStatementHighlighter.cs (1)
33or SyntaxKind.GotoKeyword
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Classification\ClassificationHelpers.cs (1)
83case SyntaxKind.GotoKeyword:
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Legacy\NativeCSharpTokenizer.cs (1)
99CSharpSyntaxKind.GotoKeyword,