51 references to SealedKeyword
Microsoft.CodeAnalysis.CSharp (9)
Parser\LanguageParser.cs (3)
352
case SyntaxKind.
SealedKeyword
:
1314
case SyntaxKind.
SealedKeyword
:
2457
case SyntaxKind.
SealedKeyword
:
SymbolDisplay\SymbolDisplayVisitor.Members.cs (1)
960
AddKeyword(SyntaxKind.
SealedKeyword
);
Symbols\Source\ModifierUtils.cs (2)
315
return SyntaxFacts.GetText(SyntaxKind.
SealedKeyword
);
377
case SyntaxKind.
SealedKeyword
:
Symbols\Source\SourceOrdinaryMethodSymbol.cs (1)
911
diagnostics.Add(ErrorCode.ERR_BadMemberFlag, location, SyntaxFacts.GetText(SyntaxKind.
SealedKeyword
));
Syntax\SyntaxKindFacts.cs (2)
973
return SyntaxKind.
SealedKeyword
;
1674
case SyntaxKind.
SealedKeyword
:
Microsoft.CodeAnalysis.CSharp.CodeStyle (4)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\CodeGeneration\CSharpSyntaxTokens.cs (1)
92
public static readonly SyntaxToken SealedKeyword = Token(SyntaxKind.
SealedKeyword
);
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\CodeStyle\CSharpCodeStyleOptions.cs (1)
172
SyntaxKind.
SealedKeyword
,
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTokenExtensions.cs (1)
86
case SyntaxKind.
SealedKeyword
:
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpAccessibilityFacts.cs (1)
133
SyntaxKind.
SealedKeyword
=> Modifiers.Sealed,
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Utilities\SyntaxKindSet.cs (2)
23
SyntaxKind.
SealedKeyword
,
43
SyntaxKind.
SealedKeyword
,
Microsoft.CodeAnalysis.CSharp.Features (18)
Completion\CompletionProviders\DeclarationName\DeclarationNameInfo.cs (1)
661
case SyntaxKind.
SealedKeyword
:
Completion\CompletionProviders\OverrideCompletionProvider.cs (1)
130
case SyntaxKind.
SealedKeyword
:
Completion\KeywordRecommenders\ClassKeywordRecommender.cs (1)
23
SyntaxKind.
SealedKeyword
,
Completion\KeywordRecommenders\ClosedKeywordRecommender.cs (1)
17
.Where(s => s is not (SyntaxKind.ClosedKeyword or SyntaxKind.AbstractKeyword or SyntaxKind.
SealedKeyword
or SyntaxKind.StaticKeyword or SyntaxKind.ReadOnlyKeyword or SyntaxKind.RefKeyword))
Completion\KeywordRecommenders\EventKeywordRecommender.cs (1)
24
SyntaxKind.
SealedKeyword
,
Completion\KeywordRecommenders\ExternKeywordRecommender.cs (1)
23
SyntaxKind.
SealedKeyword
,
Completion\KeywordRecommenders\NewKeywordRecommender.cs (2)
26
SyntaxKind.
SealedKeyword
,
40
SyntaxKind.
SealedKeyword
,
Completion\KeywordRecommenders\OverrideKeywordRecommender.cs (1)
22
SyntaxKind.
SealedKeyword
,
Completion\KeywordRecommenders\PrivateKeywordRecommender.cs (1)
46
modifiers.Contains(SyntaxKind.
SealedKeyword
))
Completion\KeywordRecommenders\RecordKeywordRecommender.cs (1)
23
SyntaxKind.
SealedKeyword
,
Completion\KeywordRecommenders\RefKeywordRecommender.cs (1)
33
SyntaxKind.
SealedKeyword
,
Completion\KeywordRecommenders\SealedKeywordRecommender.cs (1)
12
internal sealed class SealedKeywordRecommender() : AbstractSyntacticSingleKeywordRecommender(SyntaxKind.
SealedKeyword
)
Completion\KeywordRecommenders\StaticKeywordRecommender.cs (1)
51
SyntaxKind.
SealedKeyword
,
Completion\KeywordRecommenders\UnsafeKeywordRecommender.cs (2)
23
SyntaxKind.
SealedKeyword
,
39
SyntaxKind.
SealedKeyword
,
Completion\KeywordRecommenders\VoidKeywordRecommender.cs (1)
24
SyntaxKind.
SealedKeyword
,
Snippets\CSharpClassSnippetProvider.cs (1)
30
SyntaxKind.
SealedKeyword
,
Microsoft.CodeAnalysis.CSharp.Workspaces (6)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\CodeGeneration\CSharpSyntaxTokens.cs (1)
92
public static readonly SyntaxToken SealedKeyword = Token(SyntaxKind.
SealedKeyword
);
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\CodeStyle\CSharpCodeStyleOptions.cs (1)
172
SyntaxKind.
SealedKeyword
,
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTokenExtensions.cs (1)
86
case SyntaxKind.
SealedKeyword
:
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpAccessibilityFacts.cs (1)
133
SyntaxKind.
SealedKeyword
=> Modifiers.Sealed,
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Utilities\SyntaxKindSet.cs (2)
23
SyntaxKind.
SealedKeyword
,
43
SyntaxKind.
SealedKeyword
,
Microsoft.CodeAnalysis.Razor.Compiler (4)
Language\Intermediate\CommonModifiers.cs (3)
20
GetText(CSharpSyntaxKind.
SealedKeyword
)];
35
GetText(CSharpSyntaxKind.
SealedKeyword
)];
39
GetText(CSharpSyntaxKind.
SealedKeyword
)];
Language\Legacy\NativeCSharpTokenizer.cs (1)
97
CSharpSyntaxKind.
SealedKeyword
,
Microsoft.Interop.ComInterfaceGenerator (2)
Analyzers\VtableIndexStubDiagnosticsAnalyzer.cs (1)
114
|| methodSyntax.Modifiers.Any(SyntaxKind.
SealedKeyword
))
ComMethodInfo.cs (1)
72
|| comMethodDeclaringSyntax.Modifiers.Any(SyntaxKind.
SealedKeyword
))
Roslyn.Diagnostics.CSharp.Analyzers (6)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\CodeGeneration\CSharpSyntaxTokens.cs (1)
92
public static readonly SyntaxToken SealedKeyword = Token(SyntaxKind.
SealedKeyword
);
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\CodeStyle\CSharpCodeStyleOptions.cs (1)
172
SyntaxKind.
SealedKeyword
,
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTokenExtensions.cs (1)
86
case SyntaxKind.
SealedKeyword
:
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpAccessibilityFacts.cs (1)
133
SyntaxKind.
SealedKeyword
=> Modifiers.Sealed,
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Utilities\SyntaxKindSet.cs (2)
23
SyntaxKind.
SealedKeyword
,
43
SyntaxKind.
SealedKeyword
,