jsMain.io.kotest.mpp.reflection.kt Maven / Gradle / Ivy
package io.kotest.mpp
import kotlin.reflect.KClass
// qualified name is not supported on JS
actual fun KClass<*>.fqn(): String? = null
/**
* Returns the annotations on this class or empty list if not supported
*/
actual fun KClass<*>.annotations(): List = emptyList()
// not supported on JS
actual val KClass.isDataClass: Boolean?
get() = null
actual val Function<*>.paramNames: List
get() = emptyList()