Skip to content
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

Fix generic arguments for array types #232

Merged
merged 3 commits into from Jan 31, 2022
Merged

Fix generic arguments for array types #232

merged 3 commits into from Jan 31, 2022

Conversation

sungam3r
Copy link
Member

Before this fix such ctor
public ClassWithExpressions(params Expression<Func<int, object>>[] expr1) { }
yields
public ClassWithExpressions(params System.Linq.Expressions.Expression<>[]? expr1) { }

After fix generator yields
public ClassWithExpressions(params System.Linq.Expressions.Expression<System.Func<int, object>>[] expr1)

@sungam3r
Copy link
Member Author

@danielmarbach @stakx friendly bump

@danielmarbach
Copy link
Member

@sungam3r sorry I'm no longer involved in this project. I handed over things to @stakx

@stakx
Copy link
Collaborator

stakx commented Jan 31, 2022

Looks good to me! 👍

@stakx stakx merged commit 67cd50b into PublicApiGenerator:master Jan 31, 2022
@sungam3r sungam3r deleted the expressions branch January 31, 2022 22:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants