-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make types in Workspace layer sealed #75321
Conversation
@@ -14,7 +14,7 @@ | |||
|
|||
namespace Microsoft.CodeAnalysis.FindSymbols; | |||
|
|||
internal partial class AbstractSyntaxIndex<TIndex> | |||
internal abstract partial class AbstractSyntaxIndex<TIndex> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
partial abstract types had all their parts updated to be 'abstract' to make it easy to see thast this is abstract (and not accidentally seal it). Same with partial statics.
c28c8f4
to
9ab6a2f
Compare
9ab6a2f
to
2bb413e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.