fix KT-9843 Bug in incremental compilation: module is not recompiled when optional parameter added
and KT-8434 Removing parameter with default value from function in different module breaks incremental compilation #KT-9843 Fixed #KT-8434 Fixed
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
Cleaning output files:
|
||||
out/production/module1/a/A.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module1/src/module1_a.kt
|
||||
End of files
|
||||
Cleaning output files:
|
||||
out/production/module2/META-INF/module2.kotlin_module
|
||||
out/production/module2/usage/Module2_usageKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module2/src/module2_usage.kt
|
||||
End of files
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
module1->
|
||||
module2->module1
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package a
|
||||
|
||||
class A {
|
||||
fun foo(x:Int = 10) {
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package a
|
||||
|
||||
class A {
|
||||
fun foo() {
|
||||
}
|
||||
}
|
||||
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package usage
|
||||
|
||||
fun b(param: a.A) {
|
||||
param.foo()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user