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

commonMain.co.touchlab.skie.kir.irbuilder.impl.symboltable.UnsupportedProperty.kt Maven / Gradle / Ivy

The newest version!
package co.touchlab.skie.kir.irbuilder.impl.symboltable

import kotlin.properties.ReadWriteProperty
import kotlin.reflect.KProperty

fun  unsupported() = object : ReadWriteProperty {

    override fun getValue(thisRef: Any, property: KProperty<*>): T {
        throw UnsupportedOperationException()
    }

    override fun setValue(thisRef: Any, property: KProperty<*>, value: T) {
        throw UnsupportedOperationException()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy