JS: report inline suspend functions to IC

* Also inline suspend lambda'a
* Also use correct JsName's in exported suspend inline fun's
* Also use less unused imports
This commit is contained in:
Anton Bannykh
2018-11-01 20:23:45 +03:00
parent 82268cd95d
commit 59009430e5
13 changed files with 81 additions and 8 deletions
@@ -0,0 +1,6 @@
package inline
inline suspend fun f(body: () -> Unit) {
println("i'm inline suspend function")
body()
}