io.github.freya022.botcommands.internal.utils.References.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BotCommands Show documentation
Show all versions of BotCommands Show documentation
A Kotlin-first (and Java) framework that makes creating Discord bots a piece of cake, using the JDA library.
package io.github.freya022.botcommands.internal.utils
import io.github.freya022.botcommands.api.core.utils.simpleNestedName
import kotlin.jvm.internal.CallableReference
import kotlin.reflect.KClass
import kotlin.reflect.KProperty
@PublishedApi
internal val KProperty<*>.reference: String
get() {
val callableReference = (this as? CallableReference)
?: throwInternal("Referenced field doesn't seem to be compiler generated, exact type: ${this::class}")
return (callableReference.owner as KClass<*>).simpleNestedName + "." + this.name
}
internal inline fun annotationRef(): String = "@${classRef()}"
internal inline fun classRef(): String = A::class.java.simpleNestedName