IR: minor, update the comment about K2 kapt in IrGenerationExtension

K2 kapt does use stub generation in the end after all, but using the
analysis API instead of the IR backend.
This commit is contained in:
Alexander Udalov
2024-03-11 10:45:29 +01:00
committed by Space Team
parent 76d555e5d6
commit 88d159ec65
@@ -27,7 +27,7 @@ interface IrGenerationExtension : IrDeserializer.IrLinkerExtension {
// effect on the .java stub, not the resulting .class files. Compilation to the .class files is done in a separate step after stub
// generation.
//
// K2 KAPT doesn't use stub generation, so this property has no effect on extensions applied when K2 is enabled.
// K2 KAPT doesn't use the IR backend for stub generation, so this property has no effect on extensions applied when K2 is enabled.
@FirIncompatiblePluginAPI
val shouldAlsoBeAppliedInKaptStubGenerationMode: Boolean get() = false
}