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
See this Kotlin Slack conversation https://kotlinlang.slack.com/archives/C7L3JB43G/p1691477003733109
But basically, we need to replace our current SyntheticResolveExtension with a similar FirDeclarationGenerationExtension implementation.
With #1476 being merged soon, hopefully, that is the only change that needs to happen. We still need to rely on ComponentRegistrar rather than CompilerPluginRegistrar due to the issue described here: https://youtrack.jetbrains.com/issue/KT-55300/Provide-a-mechanism-to-describe-ordering-and-dependencies-for-compiler-plugins
ComponentRegistrar
CompilerPluginRegistrar
See e.g. the all-opens plugin for a strategy on how to create a plugin that supports both: https://github.com/JetBrains/kotlin/tree/master/plugins/allopen
The text was updated successfully, but these errors were encountered:
rorbech
Successfully merging a pull request may close this issue.
See this Kotlin Slack conversation https://kotlinlang.slack.com/archives/C7L3JB43G/p1691477003733109
But basically, we need to replace our current SyntheticResolveExtension with a similar FirDeclarationGenerationExtension implementation.
With #1476 being merged soon, hopefully, that is the only change that needs to happen.
We still need to rely on
ComponentRegistrar
rather thanCompilerPluginRegistrar
due to the issue described here: https://youtrack.jetbrains.com/issue/KT-55300/Provide-a-mechanism-to-describe-ordering-and-dependencies-for-compiler-pluginsSee e.g. the all-opens plugin for a strategy on how to create a plugin that supports both: https://github.com/JetBrains/kotlin/tree/master/plugins/allopen
The text was updated successfully, but these errors were encountered: