12 references to EndRegionKeyword
Microsoft.CodeAnalysis.CSharp (4)
Parser\DirectiveParser.cs (1)
73
case SyntaxKind.
EndRegionKeyword
:
Syntax\SyntaxKindFacts.cs (3)
91
case SyntaxKind.
EndRegionKeyword
:
1129
return SyntaxKind.
EndRegionKeyword
;
1669
case SyntaxKind.
EndRegionKeyword
:
Microsoft.CodeAnalysis.CSharp.Features (3)
Completion\CompletionProviders\SnippetCompletionProvider.cs (1)
139
SyntaxKind.
EndRegionKeyword
or
Completion\KeywordRecommenders\EndRegionKeywordRecommender.cs (1)
13
: base(SyntaxKind.
EndRegionKeyword
, isValidInPreprocessorContext: true, shouldFormatOnCommit: true)
QuickInfo\CSharpSyntacticQuickInfoProvider.cs (1)
46
case SyntaxKind.
EndRegionKeyword
:
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (4)
Generated\Syntax.Test.xml.Generated.cs (4)
701
=> InternalSyntaxFactory.EndRegionDirectiveTrivia(InternalSyntaxFactory.Token(SyntaxKind.HashToken), InternalSyntaxFactory.Token(SyntaxKind.
EndRegionKeyword
), InternalSyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
3668
Assert.Equal(SyntaxKind.
EndRegionKeyword
, node.EndRegionKeyword.Kind);
10917
=> SyntaxFactory.EndRegionDirectiveTrivia(SyntaxFactory.Token(SyntaxKind.HashToken), SyntaxFactory.Token(SyntaxKind.
EndRegionKeyword
), SyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
13884
Assert.Equal(SyntaxKind.
EndRegionKeyword
, node.EndRegionKeyword.Kind());
Microsoft.VisualStudio.LanguageServices.CSharp (1)
CodeModel\EndRegionFormattingRule.cs (1)
26
return previousPreviousToken.Kind() == SyntaxKind.
EndRegionKeyword
;