11 references to EndRegionKeyword
Microsoft.CodeAnalysis.CSharp (4)
Parser\DirectiveParser.cs (1)
73
case SyntaxKind.
EndRegionKeyword
:
Syntax\SyntaxKindFacts.cs (3)
91
case SyntaxKind.
EndRegionKeyword
:
1132
return SyntaxKind.
EndRegionKeyword
;
1675
case SyntaxKind.
EndRegionKeyword
:
Microsoft.CodeAnalysis.CSharp.Features (2)
Completion\CompletionProviders\SnippetCompletionProvider.cs (1)
140
SyntaxKind.
EndRegionKeyword
or
QuickInfo\CSharpSyntacticQuickInfoProvider.cs (1)
46
case SyntaxKind.
EndRegionKeyword
:
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (4)
Generated\Syntax.Test.xml.Generated.cs (4)
704
=> InternalSyntaxFactory.EndRegionDirectiveTrivia(InternalSyntaxFactory.Token(SyntaxKind.HashToken), InternalSyntaxFactory.Token(SyntaxKind.
EndRegionKeyword
), InternalSyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
3693
Assert.Equal(SyntaxKind.
EndRegionKeyword
, node.EndRegionKeyword.Kind);
11011
=> SyntaxFactory.EndRegionDirectiveTrivia(SyntaxFactory.Token(SyntaxKind.HashToken), SyntaxFactory.Token(SyntaxKind.
EndRegionKeyword
), SyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
14000
Assert.Equal(SyntaxKind.
EndRegionKeyword
, node.EndRegionKeyword.Kind());
Microsoft.VisualStudio.LanguageServices.CSharp (1)
CodeModel\EndRegionFormattingRule.cs (1)
26
return previousPreviousToken.Kind() == SyntaxKind.
EndRegionKeyword
;