ec18dce7cb
- Map generated explicit Unit returns to the closing brace of the original body - Name the continuation parameter as `$completion` to match the JVM BE, and generate debug info for it (so that it appears in the 'names' array in sourcemaps) - Don't generate debug info for coroutine instantiation ceremony (so that the user doesn't need to step in many times to get where they want) #KT-46276
27 lines
420 B
Kotlin
Vendored
27 lines
420 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// FILE: test.kt
|
|
suspend fun foo(block: Long.() -> String): String {
|
|
return 1L.block()
|
|
}
|
|
|
|
suspend fun box() {
|
|
foo {
|
|
"OK"
|
|
}
|
|
}
|
|
|
|
// EXPECTATIONS JVM JVM_IR
|
|
// test.kt:8 box
|
|
// test.kt:4 foo
|
|
// test.kt:9 invoke
|
|
// test.kt:4 foo
|
|
// test.kt:8 box
|
|
// test.kt:11 box
|
|
|
|
// EXPECTATIONS JS_IR
|
|
// test.kt:8 doResume
|
|
// test.kt:4 foo
|
|
// test.kt:4 foo
|
|
// test.kt:9 box$lambda
|
|
// test.kt:11 doResume
|