Fix suspend function with inline class types in reflection

#KT-34024 Fixed
This commit is contained in:
Alexander Udalov
2020-10-27 10:53:23 +01:00
parent 56f7e34e3e
commit dd33ed9297
11 changed files with 234 additions and 21 deletions
@@ -0,0 +1,34 @@
// TARGET_BACKEND: JVM
// WITH_REFLECT
// WITH_COROUTINES
package test
import kotlin.coroutines.startCoroutine
import kotlin.reflect.full.callSuspend
import helpers.*
inline class Z(val value: String)
class S {
private var value: Z = Z("")
suspend fun consumeZ(z: Z) { value = z }
suspend fun produceZ(): Z = value
suspend fun consumeAndProduceZ(z: Z): Z = z
}
private fun run0(f: suspend () -> String): String {
var result = ""
f.startCoroutine(handleResultContinuation { result = it })
return result
}
fun box(): String =
run0 {
val s = S()
S::consumeZ.callSuspend(s, Z("z"))
val v = S::produceZ.callSuspend(s)
if (v != Z("z")) "Fail: $v"
else S::consumeAndProduceZ.callSuspend(s, Z("OK")).value
}
@@ -0,0 +1,47 @@
// TARGET_BACKEND: JVM
// WITH_REFLECT
package test
import kotlin.reflect.*
import kotlin.reflect.jvm.*
import kotlin.test.assertEquals
import kotlin.test.assertTrue
inline class Z(val value: String)
class S {
suspend fun consumeZ(z: Z) {}
suspend fun produceZ(): Z = Z("")
suspend fun consumeAndProduceZ(z: Z): Z = z
}
fun box(): String {
val members = S::class.members.filterIsInstance<KFunction<*>>().associateBy(KFunction<*>::name)
members["consumeZ"]!!.let { cz ->
val czj = cz.javaMethod!!
assertTrue(czj.name.startsWith("consumeZ-"), czj.name)
assertEquals("java.lang.String, kotlin.coroutines.Continuation", czj.parameterTypes.joinToString { it.name })
val czjk = czj.kotlinFunction
assertEquals(cz, czjk)
}
members["produceZ"]!!.let { pz ->
val pzj = pz.javaMethod!!
assertTrue(pzj.name.startsWith("produceZ-"), pzj.name)
assertEquals("kotlin.coroutines.Continuation", pzj.parameterTypes.joinToString { it.name })
val pzjk = pzj!!.kotlinFunction
assertEquals(pz, pzjk)
}
members["consumeAndProduceZ"]!!.let { cpz ->
val cpzj = cpz.javaMethod!!
assertTrue(cpzj.name.startsWith("consumeAndProduceZ-"), cpzj.name)
assertEquals("java.lang.String, kotlin.coroutines.Continuation", cpzj.parameterTypes.joinToString { it.name })
val cpzjk = cpzj!!.kotlinFunction
assertEquals(cpz, cpzjk)
}
return "OK"
}