Files
kotlin-fork/compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline/withCapturedInlineLambda.kt
T
pyos 516692008f JVM: add tests fixed by the last two commits
One was broken on JVM, the other on JVM_IR.
2020-04-07 15:42:41 +02:00

56 lines
1.6 KiB
Kotlin
Vendored

// WITH_RUNTIME
// WITH_REFLECT
// WITH_COROUTINES
// TARGET_BACKEND: JVM
// NO_CHECK_LAMBDA_INLINING
// FILE: inlined.kt
package flow
interface Flow<T> {
suspend fun collect(collector: FlowCollector<T>)
}
interface FlowCollector<T> {
suspend fun emit(value: T)
}
inline fun <T> flow(crossinline body: suspend FlowCollector<T>.() -> Unit): Flow<T> =
object : Flow<T> {
override suspend fun collect(collector: FlowCollector<T>) = collector.body()
}
suspend inline fun <T> Flow<T>.collect(crossinline body: suspend (T) -> Unit) =
collect(object : FlowCollector<T> {
override suspend fun emit(value: T) = body(value)
})
inline fun <T, R> Flow<T>.transform(crossinline transformer: suspend FlowCollector<R>.(value: T) -> Unit): Flow<R> =
flow<R> { collect { value -> transformer(value) } }
inline fun <T, R> Flow<T>.map(crossinline transformer: suspend (value: T) -> R): Flow<R> =
transform { value -> emit(transformer(value)) }
// FILE: box.kt
import flow.*
import helpers.*
import kotlin.reflect.*
import kotlin.reflect.jvm.*
import kotlin.coroutines.*
import kotlin.coroutines.intrinsics.*
suspend fun addK(x: String): String = suspendCoroutineUninterceptedOrReturn { cont ->
cont.resume(x + "K")
COROUTINE_SUSPENDED
}
var result = ""
fun box(): String {
suspend {
val source = flow<String> { emit("O") }
val reference: (suspend (String) -> String) -> Flow<String> = source::map
((reference as KFunction<*>).javaMethod!!.invoke(null, source, ::addK) as Flow<String>).collect { result = it }
}.startCoroutine(EmptyContinuation)
return result
}