Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Building module1
|
||||
Local cache for KotlinChunk<KotlinJvmModuleBuildTarget>(Module 'module1' production) are INVALID
|
||||
Marked as dirty by Kotlin:
|
||||
module1/src/A.kt
|
||||
Cleaning output files:
|
||||
out/production/module1/META-INF/module1.kotlin_module
|
||||
out/production/module1/a/A.class
|
||||
out/production/module1/a/AKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module1/src/A.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Building module2
|
||||
Local cache for KotlinChunk<KotlinJvmModuleBuildTarget>(Module 'module2' production) are INVALID
|
||||
Marked as dirty by Kotlin:
|
||||
module2/src/B.kt
|
||||
Cleaning output files:
|
||||
out/production/module2/META-INF/module2.kotlin_module
|
||||
out/production/module2/b/B.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module2/src/B.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Lookups cache are INVALID
|
||||
Marked as dirty by Kotlin:
|
||||
module1/src/A.kt
|
||||
module2/src/B.kt
|
||||
Building module1
|
||||
Cleaning output files:
|
||||
out/production/module1/META-INF/module1.kotlin_module
|
||||
out/production/module1/a/A.class
|
||||
out/production/module1/a/AKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module1/src/A.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Building module2
|
||||
Cleaning output files:
|
||||
out/production/module2/META-INF/module2.kotlin_module
|
||||
out/production/module2/b/B.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module2/src/B.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
module1->
|
||||
module2->module1
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package a
|
||||
|
||||
open class A
|
||||
|
||||
inline fun f(): A {
|
||||
return A()
|
||||
}
|
||||
Vendored
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package b
|
||||
|
||||
import a.*
|
||||
|
||||
open class B {
|
||||
val a = f()
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package b;
|
||||
|
||||
class C {
|
||||
C() {
|
||||
new B();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user