42 references to EventKeyword
Microsoft.CodeAnalysis.CSharp (9)
Parser\LanguageParser.cs (5)
1533currentTokenKind == SyntaxKind.EventKeyword || 2312case SyntaxKind.EventKeyword: 2595if (this.CurrentToken.Kind == SyntaxKind.EventKeyword) 3068if (this.CurrentToken.Kind == SyntaxKind.EventKeyword) 4832Debug.Assert(this.CurrentToken.Kind == SyntaxKind.EventKeyword);
SymbolDisplay\SymbolDisplayVisitor.Members.cs (1)
235AddKeyword(SyntaxKind.EventKeyword);
Syntax\SyntaxKindFacts.cs (3)
51case SyntaxKind.EventKeyword: 961return SyntaxKind.EventKeyword; 1609case SyntaxKind.EventKeyword:
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTokenExtensions.cs (1)
205case SyntaxKind.EventKeyword:
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTreeExtensions.cs (1)
733syntaxTree.IsAfterKeyword(position, SyntaxKind.EventKeyword, cancellationToken) ||
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\KeywordRecommenders\EventKeywordRecommender.cs (1)
37: base(SyntaxKind.EventKeyword)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (28)
Generated\Syntax.Test.xml.Generated.cs (8)
554=> InternalSyntaxFactory.EventFieldDeclaration(new Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList<Syntax.InternalSyntax.AttributeListSyntax>(), new Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList<Syntax.InternalSyntax.SyntaxToken>(), InternalSyntaxFactory.Token(SyntaxKind.EventKeyword), GenerateVariableDeclaration(), InternalSyntaxFactory.Token(SyntaxKind.SemicolonToken)); 584=> InternalSyntaxFactory.EventDeclaration(new Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList<Syntax.InternalSyntax.AttributeListSyntax>(), new Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList<Syntax.InternalSyntax.SyntaxToken>(), InternalSyntaxFactory.Token(SyntaxKind.EventKeyword), GenerateIdentifierName(), null, InternalSyntaxFactory.Identifier("Identifier"), null, null); 3011Assert.Equal(SyntaxKind.EventKeyword, node.EventKeyword.Kind); 3171Assert.Equal(SyntaxKind.EventKeyword, node.EventKeyword.Kind); 10731=> SyntaxFactory.EventFieldDeclaration(new SyntaxList<AttributeListSyntax>(), new SyntaxTokenList(), SyntaxFactory.Token(SyntaxKind.EventKeyword), GenerateVariableDeclaration(), SyntaxFactory.Token(SyntaxKind.SemicolonToken)); 10761=> SyntaxFactory.EventDeclaration(new SyntaxList<AttributeListSyntax>(), new SyntaxTokenList(), SyntaxFactory.Token(SyntaxKind.EventKeyword), GenerateIdentifierName(), default(ExplicitInterfaceSpecifierSyntax), SyntaxFactory.Identifier("Identifier"), default(AccessorListSyntax), default(SyntaxToken)); 13188Assert.Equal(SyntaxKind.EventKeyword, node.EventKeyword.Kind()); 13348Assert.Equal(SyntaxKind.EventKeyword, node.EventKeyword.Kind());
Parsing\AsyncParsingTests.cs (5)
1077N(SyntaxKind.EventKeyword); 1124N(SyntaxKind.EventKeyword); 1170N(SyntaxKind.EventKeyword); 1542N(SyntaxKind.EventKeyword); 1602N(SyntaxKind.EventKeyword);
Parsing\DeclarationParsingTests.cs (4)
6021N(SyntaxKind.EventKeyword); 6081N(SyntaxKind.EventKeyword); 6147N(SyntaxKind.EventKeyword); 6220N(SyntaxKind.EventKeyword);
Parsing\DeclarationScopeParsingTests.cs (3)
14384N(SyntaxKind.EventKeyword); 14439N(SyntaxKind.EventKeyword); 14507N(SyntaxKind.EventKeyword);
Parsing\FileModifierParsingTests.cs (2)
921N(SyntaxKind.EventKeyword); 1168N(SyntaxKind.EventKeyword);
Parsing\MemberDeclarationParsingTests.cs (4)
10994N(SyntaxKind.EventKeyword); 11168N(SyntaxKind.EventKeyword); 11713N(SyntaxKind.EventKeyword); 11745N(SyntaxKind.EventKeyword);
Parsing\TopLevelStatementsParsingTests.cs (1)
698N(SyntaxKind.EventKeyword);
Syntax\SyntaxTests.cs (1)
265case SyntaxKind.EventKeyword:
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTokenExtensions.cs (1)
205case SyntaxKind.EventKeyword:
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTreeExtensions.cs (1)
733syntaxTree.IsAfterKeyword(position, SyntaxKind.EventKeyword, cancellationToken) ||