13 references to EndIfKeyword
Microsoft.CodeAnalysis.CSharp (4)
Parser\DirectiveParser.cs (1)
67
case SyntaxKind.
EndIfKeyword
:
Syntax\SyntaxKindFacts.cs (3)
78
case SyntaxKind.
EndIfKeyword
:
1097
return SyntaxKind.
EndIfKeyword
;
1629
case SyntaxKind.
EndIfKeyword
:
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
CSharpRemoveRedundantNullableDirectiveDiagnosticAnalyzer.cs (1)
69
SyntaxKind.
EndIfKeyword
)
Microsoft.CodeAnalysis.CSharp.Features (4)
Completion\CompletionProviders\SnippetCompletionProvider.cs (1)
120
SyntaxKind.
EndIfKeyword
or
Completion\KeywordRecommenders\EndIfKeywordRecommender.cs (1)
13
: base(SyntaxKind.
EndIfKeyword
, isValidInPreprocessorContext: true)
CSharpRemoveRedundantNullableDirectiveDiagnosticAnalyzer.cs (1)
69
SyntaxKind.
EndIfKeyword
)
QuickInfo\CSharpSyntacticQuickInfoProvider.cs (1)
48
case SyntaxKind.
EndIfKeyword
:
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (4)
Generated\Syntax.Test.xml.Generated.cs (4)
677
=> InternalSyntaxFactory.EndIfDirectiveTrivia(InternalSyntaxFactory.Token(SyntaxKind.HashToken), InternalSyntaxFactory.Token(SyntaxKind.
EndIfKeyword
), InternalSyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
3558
Assert.Equal(SyntaxKind.
EndIfKeyword
, node.EndIfKeyword.Kind);
10653
=> SyntaxFactory.EndIfDirectiveTrivia(SyntaxFactory.Token(SyntaxKind.HashToken), SyntaxFactory.Token(SyntaxKind.
EndIfKeyword
), SyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
13534
Assert.Equal(SyntaxKind.
EndIfKeyword
, node.EndIfKeyword.Kind());