How can one parse the kotlin metadata from a `.cla...
# compiler
y
How can one parse the kotlin metadata from a
.class
file?
kotlinx-metadata-jvm
seems to give no information whatsoever about how to do this and assumes that either you're going to get it "reflectively" or "through other means". Is there an easy way to get the metadata out quickly, or would I have to go into ASM?
e
you're either going to need to load the class or use a classfile parser (which ASM can do)