| // IGNORE_BACKEND_K2_MULTI_MODULE: JS_IR |
| // ^^^ KT-80626: Wrong source file for debuginfo in splitted stepping tests |
| // FILE: test.kt |
| |
| fun box() { |
| val a = foo() |
| a() |
| } |
| // FILE: test1.kt |
| // aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa |
| inline fun foo() = { |
| } |
| |
| // EXPECTATIONS JVM_IR |
| // test.kt:6 box |
| // test1.kt:11 box |
| // test1.kt:12 box |
| // test.kt:6 box |
| // test.kt:7 box |
| // test1.kt:12 invoke |
| // test.kt:7 box |
| // test.kt:8 box |
| |
| // EXPECTATIONS NATIVE |
| // test.kt:6 box |
| // test1.kt:11 box |
| // test.kt:6 box |
| // test.kt:7 box |
| // test1.kt:11 invoke |
| // test1.kt:12 invoke |
| // test.kt:8 box |
| |
| // EXPECTATIONS JS_IR |
| // test1.kt:11 box |
| // test.kt:7 box |
| // test.kt:2 box$lambda |
| // test.kt:8 box |
| |
| // EXPECTATIONS WASM |
| // test.kt:6 $box (12) |
| // test1.kt:11 $box (19) |
| // test1.kt:12 $box (1) |
| // test.kt:7 $box (4) |
| // test.kt:2 $box$lambda.invoke (70) |
| // test.kt:7 $box (4) |
| // test.kt:8 $box (1) |