-
-
Notifications
You must be signed in to change notification settings - Fork 505
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
Unable to determine if it is a Kotlin type #2556
Labels
invalid
This doesn't seem right
Comments
See the follwing tests: Lines 21 to 71 in 1ca8bc5
Tests are following the test cases described here: If you see any case, not respected, make sure you update the test and we can consider it. |
I see. I suggest forking this repository, updating the test suite so that there are failing tests and creating a draft PR linked to this issue, so we can take a look. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unable to determine if it is a Kotlin type
To Reproduce
Steps to reproduce the behavior:
Screenshots
wrong: KotlinDetector.isKotlinType(methodParameter.parameterType)
right: KotlinDetector.isKotlinType(methodParameter.containingClass)
fix: KotlinDetector.isKotlinType(methodParameter.containingClass)
is this fix code right?
Additional context
id dont know what fix use
methodParameter.toKParameter()
?The text was updated successfully, but these errors were encountered: