Rebuilding dependent modules.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
Cleaning output files:
|
||||
out/production/module1/a/APackage$module1_a$*.class
|
||||
out/production/module1/a/APackage.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module1/src/module1_a.kt
|
||||
End of files
|
||||
Cleaning output files:
|
||||
out/production/module1/a/APackage$module1_a$*.class
|
||||
out/production/module1/a/APackage$module1_other$*.class
|
||||
out/production/module1/a/APackage.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module1/src/module1_a.kt
|
||||
module1/src/module1_other.kt
|
||||
End of files
|
||||
Cleaning output files:
|
||||
out/production/module2/b/BPackage$module2_b$*.class
|
||||
out/production/module2/b/BPackage.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module2/src/module2_b.kt
|
||||
End of files
|
||||
Cleaning output files:
|
||||
out/production/module3/c/CPackage$module3_c$*.class
|
||||
out/production/module3/c/CPackage.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module3/src/module3_c.kt
|
||||
End of files
|
||||
@@ -0,0 +1,3 @@
|
||||
module1->
|
||||
module2->module1
|
||||
module3->module2
|
||||
@@ -0,0 +1,6 @@
|
||||
package a
|
||||
|
||||
inline fun a(body: () -> Unit) {
|
||||
println("i'm inline function")
|
||||
body()
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package a
|
||||
|
||||
inline fun a(body: () -> Unit) {
|
||||
println("i am inline function")
|
||||
body()
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package a
|
||||
|
||||
fun other() {
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package b
|
||||
|
||||
inline fun b(body: () -> Unit) {
|
||||
a.a { println("to be inlined into b") }
|
||||
body()
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package c
|
||||
|
||||
inline fun c(body: () -> Unit) {
|
||||
b.b { println("to be inlined into b") }
|
||||
body()
|
||||
}
|
||||
Reference in New Issue
Block a user