All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsMain.io.kotest.mpp.reflection.kt Maven / Gradle / Ivy

There is a newer version: 4.0.7
Show newest version
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()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy