7249d2f889
* fixed NoSuchMethod caused by mismatched signatures of the "invoke" method generated for lambda arguments * added test cases in invoke.kt for KFunction and anonymous functions * added a transformer to wrap the last expression in the bodies of lambdas with return
23 lines
454 B
Kotlin
Vendored
23 lines
454 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
import kotlin.test.*
|
|
|
|
var log: String = ""
|
|
|
|
inline fun <T> runLogged(entry: String, action: () -> T): T {
|
|
log += entry
|
|
return action()
|
|
}
|
|
|
|
operator fun String.provideDelegate(host: Any?, p: Any): String =
|
|
runLogged("tdf($this);") { this }
|
|
|
|
operator fun String.getValue(receiver: Any?, p: Any): String =
|
|
runLogged("get($this);") { this }
|
|
|
|
val testO by runLogged("O;") { "O" }
|
|
|
|
fun box(): String {
|
|
return "OK"
|
|
}
|