Support rendering receiver parameters

Otherwise generated coroutine implementation class could not be rendered since one of its members corresponds to receiver parameter descriptor.
This commit is contained in:
Ilya Gorbunov
2017-04-27 02:34:23 +03:00
parent 5f09e18394
commit 99504eb753
4 changed files with 39 additions and 3 deletions
@@ -0,0 +1,8 @@
public fun invokeCoroutineBuilder() {
return buildCoroutine {
}
}
public fun buildCoroutine(builderAction: suspend Any.() -> Unit) {
}