Cornelius Wichering
04/22/2022, 7:59 PM@OneAnnotation(value = "someDetail")
fun methodA() { ... }
I want my plugin to add another annotation like this
@AnotherAnnotation(value = "someDetail") // value taken from "original" annotation
@OneAnnotation(value = "someDetail")
fun methodA() { ... }
Do you think arrow-meta is a good fit for this task? Any hints on how to do it?raulraja
04/22/2022, 10:17 PMAnotherAnnotation
, you may be able to use just backend IRraulraja
04/22/2022, 10:18 PMCornelius Wichering
04/23/2022, 11:11 AMraulraja
04/23/2022, 11:26 AMirDeclaration { decl.annotations... }
or directly without meta using the IRGenerationExtension in the compiler apis.raulraja
04/23/2022, 11:27 AMCornelius Wichering
04/23/2022, 5:06 PM