14 references to EndRegionKeyword
Microsoft.CodeAnalysis.CSharp (8)
_generated\0\Syntax.xml.Main.Generated.cs (2)
6400
if (endRegionKeyword.Kind() != SyntaxKind.
EndRegionKeyword
) throw new ArgumentException(nameof(endRegionKeyword));
6407
=> SyntaxFactory.EndRegionDirectiveTrivia(SyntaxFactory.Token(SyntaxKind.HashToken), SyntaxFactory.Token(SyntaxKind.
EndRegionKeyword
), SyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), isActive);
_generated\1\Syntax.xml.Internal.Generated.cs (2)
33661
if (endRegionKeyword.Kind != SyntaxKind.
EndRegionKeyword
) throw new ArgumentException(nameof(endRegionKeyword));
39088
if (endRegionKeyword.Kind != SyntaxKind.
EndRegionKeyword
) throw new ArgumentException(nameof(endRegionKeyword));
Parser\DirectiveParser.cs (1)
73
case SyntaxKind.
EndRegionKeyword
:
Syntax\SyntaxKindFacts.cs (3)
91
case SyntaxKind.
EndRegionKeyword
:
1200
return SyntaxKind.
EndRegionKeyword
;
1752
case SyntaxKind.
EndRegionKeyword
:
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Formatting\CSharpSyntaxFormattingService.cs (1)
304
'n' => kind is SyntaxKind.RegionKeyword or SyntaxKind.
EndRegionKeyword
,
Microsoft.CodeAnalysis.CSharp.Features (3)
Completion\CompletionProviders\SnippetCompletionProvider.cs (1)
136
SyntaxKind.
EndRegionKeyword
or
Completion\KeywordRecommenders\EndRegionKeywordRecommender.cs (1)
10
internal sealed class EndRegionKeywordRecommender() : AbstractSyntacticSingleKeywordRecommender(SyntaxKind.
EndRegionKeyword
, isValidInPreprocessorContext: true, shouldFormatOnCommit: true)
QuickInfo\CSharpSyntacticQuickInfoProvider.cs (1)
38
case SyntaxKind.
EndRegionKeyword
:
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Formatting\CSharpSyntaxFormattingService.cs (1)
304
'n' => kind is SyntaxKind.RegionKeyword or SyntaxKind.
EndRegionKeyword
,
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Formatting\CSharpSyntaxFormattingService.cs (1)
304
'n' => kind is SyntaxKind.RegionKeyword or SyntaxKind.
EndRegionKeyword
,