Add multi-module JS IC tests with JPS
This commit is contained in:
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Building module1, module2
|
||||
Cleaning output files:
|
||||
out/production/module1/META-INF/module1.kotlin_module
|
||||
out/production/module1/a/AKt.class
|
||||
out/production/module1/c/C2Kt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module1/src/a.kt
|
||||
module1/src/c2.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
module1->module2
|
||||
module2->module1
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package a
|
||||
|
||||
fun a() {
|
||||
c.internalFun()
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package a
|
||||
|
||||
fun a() {
|
||||
}
|
||||
|
||||
fun aa() {
|
||||
c.internalFun()
|
||||
c.internalFun2()
|
||||
}
|
||||
jps-plugin/testData/incremental/multiModule/jvm/circularDependencyWithAccessToInternal/module1_c1.kt
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package c
|
||||
|
||||
fun publicFun() {}
|
||||
|
||||
internal fun internalFun2() {}
|
||||
jps-plugin/testData/incremental/multiModule/jvm/circularDependencyWithAccessToInternal/module1_c2.kt
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
package c
|
||||
|
||||
internal fun internalFun() {}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package c
|
||||
|
||||
internal fun internalFun() {}
|
||||
|
||||
fun newFun() {}
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
package b
|
||||
|
||||
class B
|
||||
|
||||
fun b() {
|
||||
}
|
||||
Reference in New Issue
Block a user