is it correct that kotlin metadata does not contai...
# compiler
w
is it correct that kotlin metadata does not contain information about other annotations? do I need to fall back to the java
TypeElement
for this information? if this is correct are there any libraries that wrap both in a kotlin idiomatic library?
b
AFAIK on JVM that’s true
if this is correct are there any libraries that wrap both in a kotlin idiomatic library?
kotlin-reflect? cc @udalov
w
I’ve since switched to
ksp
to have all of my needed info in one api
👌 1