-
-
Notifications
You must be signed in to change notification settings - Fork 749
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
Adds resolver compiler source generator. #7137
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #7137 +/- ##
==========================================
- Coverage 75.01% 72.45% -2.57%
==========================================
Files 2622 2641 +19
Lines 131763 132503 +740
==========================================
- Hits 98845 96001 -2844
- Misses 32918 36502 +3584
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Qodana for .NET37 new problems were found
💡 Qodana analysis was run in the pull request mode: only the changed files were checked Contact Qodana teamContact us at qodana-support@jetbrains.com
|
=> parameter.Type.ToDisplayString() == WellKnownTypes.DocumentNode; | ||
|
||
public static bool IsEventMessage(this IParameterSymbol parameter) | ||
=> parameter.Type.ToDisplayString() == WellKnownAttributes.EnumTypeAttribute; |
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.
Is this a typo?
=> parameter.Type.ToDisplayString() == WellKnownAttributes.EnumTypeAttribute; | |
=> parameter.Type.ToDisplayString() == WellKnownAttributes.EventMessageAttribute; |
No description provided.