Rename: jps-plugin -> jps/jps-plugin

This commit is contained in:
Nikita Bobko
2021-12-29 19:21:54 +01:00
parent d8f99d8974
commit db7472a376
2317 changed files with 0 additions and 0 deletions
@@ -0,0 +1,10 @@
package test
inline fun a(body: () -> Unit) {
println("i'm inline function a")
body()
}
fun main(args: Array<String>) {
b { println("to be inlined") }
}
@@ -0,0 +1,10 @@
package test
inline fun a(body: () -> Unit) {
body()
println("i'm inline function a")
}
fun main(args: Array<String>) {
b { println("to be inlined") }
}
@@ -0,0 +1,7 @@
package test
inline fun b(body: () -> Unit) {
println("I'm inline function b")
body()
a { println("To be inlined from b") }
}
@@ -0,0 +1,33 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/test/AKt.class
End of files
Compiling files:
src/a.kt
End of files
Marked as dirty by Kotlin:
src/b.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/test/BKt.class
End of files
Compiling files:
src/b.kt
End of files
Marked as dirty by Kotlin:
src/a.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/test/AKt.class
End of files
Compiling files:
src/a.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,6 @@
================ Step #1 =================
Compiling files:
src/a.kt
End of files
Exit code: OK