`Kotlin serialization support consists of three pa...
# serialization
c
Kotlin serialization support consists of three parts: a compiler plugin, which produces visitor/serializer code for objects, an IntelliJ plugin and a runtime library.
Are intellij plugin and compiler plugin open source? I can't find them on github
s
They're part of Kotlin repository now: https://github.com/JetBrains/kotlin/tree/master/plugins/kotlin-serialization If you're looking for 1.2.x versions, search in
rr/kotlinx.serialization.compat/
branches
👍 1
c
perfect, thanks!