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

main.seskar.compiler.react.value.backend.JsValue.kt Maven / Gradle / Ivy

There is a newer version: 3.32.0
Show newest version
package seskar.compiler.react.value.backend

import org.jetbrains.kotlin.descriptors.ClassKind
import org.jetbrains.kotlin.ir.declarations.IrClass

internal fun IrClass.isJsValue(): Boolean {
    if (kind != ClassKind.CLASS)
        return false

    if (!isValue)
        return false

    checkValue(this)

    return true
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy