MicroUtils/ksp/sealed/src/commonMain/kotlin/GenerateSealedWorkaround.kt

14 lines
417 B
Kotlin
Raw Normal View History

2024-06-25 16:04:25 +00:00
package dev.inmo.microutils.kps.sealed
@Retention(AnnotationRetention.BINARY)
@Target(AnnotationTarget.CLASS)
annotation class GenerateSealedWorkaround(
val prefix: String = ""
) {
@Retention(AnnotationRetention.BINARY)
@Target(AnnotationTarget.CLASS)
annotation class Order(val order: Int)
@Retention(AnnotationRetention.BINARY)
@Target(AnnotationTarget.CLASS)
annotation class Exclude
}