11 references to EndIfKeyword
Microsoft.CodeAnalysis.CSharp (4)
Parser\DirectiveParser.cs (1)
70
case SyntaxKind.
EndIfKeyword
:
Syntax\SyntaxKindFacts.cs (3)
89
case SyntaxKind.
EndIfKeyword
:
1125
return SyntaxKind.
EndIfKeyword
;
1665
case SyntaxKind.
EndIfKeyword
:
Microsoft.CodeAnalysis.CSharp.Features (3)
Completion\CompletionProviders\SnippetCompletionProvider.cs (1)
137
SyntaxKind.
EndIfKeyword
or
Completion\KeywordRecommenders\EndIfKeywordRecommender.cs (1)
13
: base(SyntaxKind.
EndIfKeyword
, isValidInPreprocessorContext: true)
QuickInfo\CSharpSyntacticQuickInfoProvider.cs (1)
47
case SyntaxKind.
EndIfKeyword
:
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (4)
Generated\Syntax.Test.xml.Generated.cs (4)
695
=> InternalSyntaxFactory.EndIfDirectiveTrivia(InternalSyntaxFactory.Token(SyntaxKind.HashToken), InternalSyntaxFactory.Token(SyntaxKind.
EndIfKeyword
), InternalSyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
3642
Assert.Equal(SyntaxKind.
EndIfKeyword
, node.EndIfKeyword.Kind);
10911
=> SyntaxFactory.EndIfDirectiveTrivia(SyntaxFactory.Token(SyntaxKind.HashToken), SyntaxFactory.Token(SyntaxKind.
EndIfKeyword
), SyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
13858
Assert.Equal(SyntaxKind.
EndIfKeyword
, node.EndIfKeyword.Kind());