Global rename in test data for coroutines

(cherry picked from commit 132f97b)
This commit is contained in:
Stanislav Erokhin
2016-12-15 19:54:03 +03:00
committed by Stanislav Erokhin
parent 8968bc3dd6
commit b527a4d158
93 changed files with 210 additions and 210 deletions
@@ -1,6 +1,6 @@
import kotlin.coroutines.*
class Controller {
suspend fun suspendHere() = suspendWithCurrentContinuation<String> { x ->
suspend fun suspendHere() = CoroutineIntrinsics.suspendCoroutineOrReturn<String> { x ->
x.resume("OK")
}
}