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