Grégory Lureau

Results 30 comments of Grégory Lureau

I don't think this will be supported: KustomExport goal was to provide enum support in older Kotlin version, now that newest Kotlin supports it, it's more than advised to use...

It could but I believe some simple workarounds can be found, it's a matter of trade-off so some may need it. As I don't use this tool myself anymore I...

Thanks for your report! I was thinking to add a `@KustomIgnore` to hide some classes / fields, I think it'll become even more required if we want to target file...

Thanks for your report! The behavior you describe is known, I've started working to deal with inner classes but it's adding some complexity in the generation code if I want...

Didn't have a lot of time to work on this topic, and 1.6.20 should come soon with a better enum support, so this topic is in standby for now.

I'm in the process of writing my own serializer tool, partially due to the lack of flexibility with the oneOf in ktx serialization. In my project, I'm using an annotation...

Oh i'm sorry, I forgot to share the annotation declaration ```kotlin @Repeatable public annotation class ProtoPolymorphism( val parent: KClass, val oneOf: Array, ) { public annotation class Pair(val kClass: KClass,...

There's nothing special in those classes, you can have a look [here](https://github.com/glureau/k2pb/blob/serializer/sample-app/src/commonMain/kotlin/com/glureau/sample/AbstractClass.kt), they are just marked with the equivalent of `@Serializable`. Subclasses are not aware they are used in one...

>To prevent those mocks from being present in the final library artifact/binary I could probably introduce logic that would run Mockative's Symbol Processor only if a Test task is being...

Thank **you** for all your work! Great library and nice to have such a good support and response time for an open source project. Enjoy your days off! PS: I've...