We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, KSP returns the incorrect mangled JVM name of the inlined method.
It's breaking Micronaut integration: micronaut-projects/micronaut-core#9716
The problem is in ResolverImpl:
private val typeMapper = KotlinTypeMapper( BindingContext.EMPTY, ClassBuilderMode.LIGHT_CLASSES, module.name.getNonSpecialIdentifier(), KotlinTypeMapper.LANGUAGE_VERSION_SETTINGS_DEFAULT, // TODO use proper LanguageVersionSettings true )
Type mapper is created with useOldInlineClassesManglingScheme - true
useOldInlineClassesManglingScheme
true
The text was updated successfully, but these errors were encountered:
@ting-yuan Would it be possible to fix?
Sorry, something went wrong.
This is not completed, the issue got closed because of the workaround
No branches or pull requests
Currently, KSP returns the incorrect mangled JVM name of the inlined method.
It's breaking Micronaut integration:
micronaut-projects/micronaut-core#9716
The problem is in ResolverImpl:
Type mapper is created with
useOldInlineClassesManglingScheme
-true
The text was updated successfully, but these errors were encountered: