Rename: jps-plugin -> jps/jps-plugin

This commit is contained in:
Nikita Bobko
2021-12-29 19:21:54 +01:00
parent d8f99d8974
commit db7472a376
2317 changed files with 0 additions and 0 deletions
@@ -0,0 +1,45 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/test/FunKt.class
End of files
Compiling files:
src/fun.kt
End of files
Marked as dirty by Kotlin:
src/useDefault1.kt
src/useDefault2.kt
src/useNonDefault.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/test/UseDefault1Kt.class
out/production/module/test/UseDefault2Kt.class
out/production/module/test/UseNonDefaultKt.class
End of files
Compiling files:
src/useDefault1.kt
src/useDefault2.kt
src/useNonDefault.kt
End of files
Exit code: ABORT
------------------------------------------
COMPILATION FAILED
No value passed for parameter 'y'
No value passed for parameter 'y'
================ Step #2 =================
Cleaning output files:
out/production/module/test/FunKt.class
End of files
Compiling files:
src/fun.kt
src/useDefault1.kt
src/useDefault2.kt
src/useNonDefault.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package test
fun f(x: Int = 1, y: Int = 2) {
println("f(x=$x, y=$y)")
}
@@ -0,0 +1,5 @@
package test
fun f(x: Int = 1, y: Int) {
println("f(x=$x, y=$y)")
}
@@ -0,0 +1,3 @@
package other
fun other() {}
@@ -0,0 +1,5 @@
package test
fun useDefault1() {
f()
}
@@ -0,0 +1,5 @@
package test
fun useDefault1() {
f(y=6)
}
@@ -0,0 +1,5 @@
package test
fun useDefault2() {
f(5)
}
@@ -0,0 +1,5 @@
package test
fun useDefault2() {
f(5, 6)
}
@@ -0,0 +1,5 @@
package test
fun useNonDefault() {
f(10, 20)
}