-
Notifications
You must be signed in to change notification settings - Fork 33
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
Drop type-hints from assoc-conversion
to work around AOT issue
#69
Conversation
Since this function is usually not called at runtime, the reflection performance penalty should be tolerable. Fixes clj-commons#68
Does it also fix #34? |
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.
Can you make Eastwood stop complaining about the changes? https://github.com/jonase/eastwood#ignored-faults
Pretty sure it would (this patch was derived from the workaround in that ticket's description). However, according to #34 (comment) it wasn't reproducible anymore in that particular context so I didn't try anymore.
Done! |
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.
Really wish Eastwood was configurable for names, not just files/lines/cols, but...
Indeed, that's unfortunate 🤷 Note that I don't have merge rights myself here so you'll have to do the honors 🙂 |
Dammit, let me see about adding you as a contributor |
@DerGuteMoritz Try merging now |
Thanks! 🙏 |
Since this function is usually not called at runtime, the reflection performance penalty should be tolerable.
Fixes #68