commonMain.fr.acinq.lightning.utils.breakpointWorkaround.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lightning-kmp-jvm Show documentation
Show all versions of lightning-kmp-jvm Show documentation
A Kotlin Multiplatform implementation of the Lightning Network
package fr.acinq.lightning.utils
import kotlin.reflect.KProperty
/*
Workaround for "MPP: Can't stop on breakpoint anywhere in file if it contains lazy"
https://youtrack.jetbrains.com/issue/KT-41471
To be removed when fixed...
*/
operator fun Lazy.getValue(thisRef: Any?, property: KProperty<*>) = value
© 2015 - 2024 Weber Informatics LLC | Privacy Policy