Does kotlinx.serialization support the new JS IR c...
# javascript
s
Does kotlinx.serialization support the new JS IR compiler? @Grantas33 is saying that the class names that the IR compiler generates (that have
_
prefixes), aren’t properly serialized by kotlinx.serialization. @sandwwraith ^^
s
We tested kotlinx.serialization with IR backend. It mostly works, except some cases where serializer is acquired dynamically from object instance. But we’re fixing these cases. Properties with
_
and stuff should not be a problem. kotlinx.serialization operates as a compiler plugin on IR level, so it uses original Kotlin names instead of those we generate in JS.
👍 1