When using ktx serialization, what directory do compile time generated serializers get created in? I’m interested in looking at the output generated code of how my
@Serializable
classes are serialized
r
rnett
12/20/2024, 8:20 PM
IIUC they aren't "generated code" at all, instead they generate IR using a compiler plugin, during the normal compile step. The JVM equivalent (kind of) would be generating bytecode directly during
javac
. There may be a debug option somewhere to dump the serializer IR, but if so I haven't heard of it.