jvmMain.com.bkahlert.kommons.debug.JvmRender.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kommons-debug Show documentation
Show all versions of kommons-debug Show documentation
Kommons Debug is a Kotlin Multiplatform Library for print debugging.
package com.bkahlert.kommons.debug
@Suppress("NOTHING_TO_INLINE") // inline to avoid impact on stack trace
internal actual inline fun calledBy(function: String, vararg callers: String): Boolean =
StackTrace.get().findByLastKnownCallsOrNull(*callers)?.methodName == function