-
Notifications
You must be signed in to change notification settings - Fork 520
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
[Rgen] Add support for the Methods/Constructors in the transformer. #22162
[Rgen] Add support for the Methods/Constructors in the transformer. #22162
Conversation
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
709f005
to
0583b1e
Compare
Add the parsing of methods and constructor in the data model for the transformer.
9060727
to
4442985
Compare
✅ [PR Build] Build passed (Detect API changes) ✅Pipeline on Agent |
✅ [PR Build] Build passed (Build packages) ✅Pipeline on Agent |
✅ API diff for current PR / commit.NET ( No breaking changes )❗ API diff vs stable (Breaking changes).NET ( ❗ Breaking changes ❗ )ℹ️ Generator diffGenerator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes) Pipeline on Agent |
✅ [PR Build] Build passed (Build macOS tests) ✅Pipeline on Agent |
💻 [PR Build] Tests on macOS M1 - Mac Monterey (12) passed 💻✅ All tests on macOS M1 - Mac Monterey (12) passed. Pipeline on Agent |
💻 [PR Build] Tests on macOS X64 - Mac Sonoma (14) passed 💻✅ All tests on macOS X64 - Mac Sonoma (14) passed. Pipeline on Agent |
💻 [PR Build] Tests on macOS M1 - Mac Ventura (13) passed 💻✅ All tests on macOS M1 - Mac Ventura (13) passed. Pipeline on Agent |
💻 [PR Build] Tests on macOS arm64 - Mac Sequoia (15) passed 💻✅ All tests on macOS arm64 - Mac Sequoia (15) passed. Pipeline on Agent |
🚀 [CI Build] Test results 🚀Test results✅ All tests passed on VSTS: test results. 🎉 All 112 tests passed 🎉 Tests counts✅ cecil: All 1 tests passed. Html Report (VSDrops) Download Pipeline on Agent |
💻 [CI Build] Windows Integration Tests passed 💻✅ All Windows Integration Tests passed. Pipeline on Agent |
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.
minor nits. fix that only if it matters to you
@@ -110,6 +112,8 @@ public override int GetHashCode () | |||
public override string ToString () | |||
{ | |||
var sb = new StringBuilder ($"{{ Ctr: Type: {Type}, "); | |||
sb.Append ($"ExportMethodData: {ExportMethodData}, "); |
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.
it feels strange to override ToString() for generating code. wouldn't it be clearer to name it ToDisplayString() ? (and add ToString() to the banned API list, making sure it's not used ?)
@@ -122,7 +122,7 @@ public override string ToString () | |||
sb.Append ($"ReturnType: {ReturnType}, "); | |||
sb.Append ($"SymbolAvailability: {SymbolAvailability}, "); | |||
sb.Append ($"ExportMethodData: {ExportMethodData}, "); | |||
sb.Append ($"BindAs: {BindAs}, "); | |||
sb.Append ($"BindAs: {BindAs?.ToString () ?? "null"}, "); |
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.
and eventually share / reuse some of the logic ?
internal static bool Skip (MethodDeclarationSyntax methodDeclarationSyntax, SemanticModel semanticModel) | ||
{ | ||
var methodSymbol = semanticModel.GetDeclaredSymbol (methodDeclarationSyntax); | ||
if (methodSymbol is null) |
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.
that's a one liner on which I'd still add curly braces (due to the comment)
.Select (m => m.ToConstructor ()) | ||
.Where (c => c is not null) | ||
.Select (c => c!.Value) | ||
.ToImmutableArray (); |
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.
3 Wheres, 2 Selects. A LINQ query that could have been a for loop (for perf reasons). but the meaning is quite clear...
Add the parsing of methods and constructor in the data model for the transformer.