kotlin-suspend-transform-compiler-plugin icon indicating copy to clipboard operation
kotlin-suspend-transform-compiler-plugin copied to clipboard

Move to Kotlin Symbol Processing?

Open ScottPierce opened this issue 2 years ago • 1 comments

Have you thought about moving to Kotlin Symbol Processing as a way to work around the library with the compiler api you are encountering?

https://kotlinlang.org/docs/ksp-overview.html

ScottPierce avatar Jun 28 '23 22:06 ScottPierce

Hi. I did actually intend to use KSP in the earliest days, but I found that the content generated by KSP seemed to be required as a separate file/class (i.e. it couldn't directly change the original class), which was different to what I needed at the time, so I ended up going with the compiler plugin.

KSP might indeed be a good option though, and perhaps I'll try to provide an additional version of KSP when I have time. But with my limited abilities this probably won't be soon 😣

ForteScarlet avatar Jun 29 '23 01:06 ForteScarlet