Can kapt based annotation processors intercept exp...
# kapt
r
Can kapt based annotation processors intercept expressions inside functions with
kotlin.annotation.AnnotationTarget.EXPRESSION
like in the example below?
Copy code
fun main(args: Array<String>) {
  println(@myannotation doStuff())
}
y
No, declaration bodies are not available in kapt.
r
thanks 🙂