Natan Lifshitz

Results 73 comments of Natan Lifshitz

I think what _you_ suggested, is to _extend_ the tiny format, with _new_ syntax. I replied that what Player wants is achievable using the existing format.

The original idea of this issue was about generic things (See the opening comment), I agree that minecraft-specific stuff can be moved to yarn.

Well, variable name generation is already partially implemented in tiny-remapper.

This is about parameters/variables, which you can't interact with from a Kotlin mod.

This can be closed with https://github.com/FabricMC/tiny-remapper/commit/8f65b51ec7f2a8431764dc4e841e388c672ff034 @sfPlayer1

Having this issue with Forge 50.1.20, mc 1.20.6

Generic types are very important, and this limitation of Kotlinx.serialization makes me think it should be thrown out of the window and replaced with a KSP processor. @aSemy are you...

```kotlin data class SearchResult { val items: List val page: Int } ``` Generates ```kotlin interface SearchResult { items: T[] page: number } ``` Used like ```kotlin fun getDogs(query: String)...