-
Notifications
You must be signed in to change notification settings - Fork 213
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
Improve jdeps tracking and add test cases #1115
base: master
Are you sure you want to change the base?
Conversation
sealed class SomeClass { | ||
companion object { | ||
fun mapExceptions(exception: Exception) = when (exception) { | ||
is ExampleException -> exception |
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.
This test case demonstrates how it fails to track ExampleException
as a used type.
""" | ||
package something | ||
|
||
@JavaAnnotation |
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.
This test case demonstrates how it fails to track runtime class annotations as a used type.
No description provided.