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

main.seskar.compiler.react.value.backend.ValueClass.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.ir.types.IrType
import org.jetbrains.kotlin.ir.types.getClass

internal fun downCastRequired(
    type: IrType,
): Boolean {
    val klass = type.getClass()
        ?: return false

    return klass.isJsValue()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy