36 references to EventKeyword
Microsoft.CodeAnalysis.CSharp (8)
Parser\LanguageParser.cs (5)
1260currentTokenKind == SyntaxKind.EventKeyword || 1997case SyntaxKind.EventKeyword: 2280if (this.CurrentToken.Kind == SyntaxKind.EventKeyword) 2753if (this.CurrentToken.Kind == SyntaxKind.EventKeyword) 4500Debug.Assert(this.CurrentToken.Kind == SyntaxKind.EventKeyword);
SymbolDisplay\SymbolDisplayVisitor.Members.cs (1)
236AddKeyword(SyntaxKind.EventKeyword);
Syntax\SyntaxKindFacts.cs (2)
933return SyntaxKind.EventKeyword; 1573case SyntaxKind.EventKeyword:
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
SyntaxTokenExtensions.cs (1)
157case SyntaxKind.EventKeyword:
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTreeExtensions.cs\SyntaxTreeExtensions.cs (1)
731syntaxTree.IsAfterKeyword(position, SyntaxKind.EventKeyword, cancellationToken) ||
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\KeywordRecommenders\EventKeywordRecommender.cs (1)
37: base(SyntaxKind.EventKeyword)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (23)
Generated\Syntax.Test.xml.Generated.cs (8)
539=> 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)); 569=> 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); 2941Assert.Equal(SyntaxKind.EventKeyword, node.EventKeyword.Kind); 3101Assert.Equal(SyntaxKind.EventKeyword, node.EventKeyword.Kind); 10515=> SyntaxFactory.EventFieldDeclaration(new SyntaxList<AttributeListSyntax>(), new SyntaxTokenList(), SyntaxFactory.Token(SyntaxKind.EventKeyword), GenerateVariableDeclaration(), SyntaxFactory.Token(SyntaxKind.SemicolonToken)); 10545=> SyntaxFactory.EventDeclaration(new SyntaxList<AttributeListSyntax>(), new SyntaxTokenList(), SyntaxFactory.Token(SyntaxKind.EventKeyword), GenerateIdentifierName(), default(ExplicitInterfaceSpecifierSyntax), SyntaxFactory.Identifier("Identifier"), default(AccessorListSyntax), default(SyntaxToken)); 12917Assert.Equal(SyntaxKind.EventKeyword, node.EventKeyword.Kind()); 13077Assert.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)
14795N(SyntaxKind.EventKeyword); 14850N(SyntaxKind.EventKeyword); 14918N(SyntaxKind.EventKeyword);
Parsing\FileModifierParsingTests.cs (2)
921N(SyntaxKind.EventKeyword); 1168N(SyntaxKind.EventKeyword);
Parsing\TopLevelStatementsParsingTests.cs (1)
698N(SyntaxKind.EventKeyword);
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTokenExtensions.cs\SyntaxTokenExtensions.cs (1)
157case SyntaxKind.EventKeyword:
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTreeExtensions.cs\SyntaxTreeExtensions.cs (1)
731syntaxTree.IsAfterKeyword(position, SyntaxKind.EventKeyword, cancellationToken) ||