Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
+10
@@ -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") }
|
||||
}
|
||||
+10
@@ -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") }
|
||||
}
|
||||
+7
@@ -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") }
|
||||
}
|
||||
+33
@@ -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
|
||||
------------------------------------------
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Compiling files:
|
||||
src/a.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
Reference in New Issue
Block a user