Leonid Startsev

Results 509 comments of Leonid Startsev

It seems there's a confusion somewhere in the plugin that it doesn't recognize mutable collection. Try use `MutableList` instead

1.0.0-RC version is compatible only with Kotlin 1.4, 1.3.72 won't work

@faranjit maybe you have some other dependencies/modules that pull old version of library?

It looks like a kapt bug to me, but I'll see if anything can be done in the plugin

You may try to use old backend, since this error is IR-specific

Well, any CBOR decoder should support indefinite lengths, otherwise it does not satisfy the standard. But probably some tuning may help here

This is kinda working as designed. The point of `coerceInputValues` is that it does not invoke the serializer at all. It only queries descriptor to determine if the value in...

We have this goal in mind. Next release of the library will relax some restrictions, e.g. properties which do not have backing fields (an `abstract` ones) would be implicitly transient,...

The problem with `open` vars is that if you override them, you get _two_ backing fields: in the parent and in the subclass (and subclass can't access parent field!). Depending...