Hi, Just looking at updating to Kotlin 2.2.0-RC3 O...
# compiler
d
Hi, Just looking at updating to Kotlin 2.2.0-RC3 One of my compiler plugins uses IrFunction.extensionReceiverParameter (and valueParameters) which is not marked as DeprecatedCompilerApi. what should we use instead ? (and in general, how do we find out replacements for deprecated items in this area ?) thanks
I found this document which helps, somewhat kotlin/docs/backend/IR_parameter_api_migration.md
w
Hi, for those APIs, it should be answered in that document. In general, we don't document deprecations and breaking changes, because the plugin API is both experimental and quite huge. But most changes are trivial, it should suffice to search for a function with a similar name or signature.
d
Thanks