18 references to GotoKeyword
Microsoft.CodeAnalysis.CSharp (7)
Parser\LanguageParser.cs (5)
7401case SyntaxKind.GotoKeyword: 8216case SyntaxKind.GotoKeyword: 8937Debug.Assert(this.CurrentToken.Kind == SyntaxKind.GotoKeyword); 8939var @goto = this.EatToken(SyntaxKind.GotoKeyword); 10003case SyntaxKind.GotoKeyword:
Syntax\SyntaxKindFacts.cs (2)
895return SyntaxKind.GotoKeyword; 1533case SyntaxKind.GotoKeyword:
Microsoft.CodeAnalysis.CSharp.Features (2)
Completion\KeywordRecommenders\CaseKeywordRecommender.cs (1)
30if (token.Kind() == SyntaxKind.GotoKeyword &&
Completion\KeywordRecommenders\GotoKeywordRecommender.cs (1)
13: base(SyntaxKind.GotoKeyword)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (8)
Generated\Syntax.Test.xml.Generated.cs (4)
362=> InternalSyntaxFactory.GotoStatement(SyntaxKind.GotoStatement, new Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList<Syntax.InternalSyntax.AttributeListSyntax>(), InternalSyntaxFactory.Token(SyntaxKind.GotoKeyword), null, null, InternalSyntaxFactory.Token(SyntaxKind.SemicolonToken)); 2112Assert.Equal(SyntaxKind.GotoKeyword, node.GotoKeyword.Kind); 10338=> SyntaxFactory.GotoStatement(SyntaxKind.GotoStatement, new SyntaxList<AttributeListSyntax>(), SyntaxFactory.Token(SyntaxKind.GotoKeyword), default(SyntaxToken), default(ExpressionSyntax), SyntaxFactory.Token(SyntaxKind.SemicolonToken)); 12088Assert.Equal(SyntaxKind.GotoKeyword, node.GotoKeyword.Kind());
Parsing\StatementAttributeParsingTests.cs (1)
287N(SyntaxKind.GotoKeyword);
Parsing\StatementParsingTests.cs (3)
1038Assert.Equal(SyntaxKind.GotoKeyword, gs.GotoKeyword.Kind()); 1060Assert.Equal(SyntaxKind.GotoKeyword, gs.GotoKeyword.Kind()); 1084Assert.Equal(SyntaxKind.GotoKeyword, gs.GotoKeyword.Kind());
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Classification\ClassificationHelpers.cs (1)
86case SyntaxKind.GotoKeyword: