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,11 @@
open class A {
companion object {
@JvmStatic
fun f() {}
@JvmStatic
fun g() {}
}
fun h() {}
}
@@ -0,0 +1,3 @@
class AChild : A() {
fun j() {}
}
@@ -0,0 +1,3 @@
class AChild {
fun j() {}
}
@@ -0,0 +1,4 @@
@file:JvmName("A")
@file:JvmMultifileClass
fun f() {}
@@ -0,0 +1,4 @@
@file:JvmName("A")
@file:JvmMultifileClass
fun g() {}
@@ -0,0 +1,56 @@
================ Step #1 =================
Cleaning output files:
out/production/module/A$Companion.class
out/production/module/A.class
out/production/module/META-INF/module.kotlin_module
End of files
Marked as dirty by Kotlin:
src/AChild.kt
src/getA.kt
src/getAChild.kt
src/useF.kt
src/useG.kt
src/useH.kt
src/useJ.kt
Cleaning output files:
out/production/module/AChild.class
out/production/module/GetAChildKt.class
out/production/module/GetAKt.class
out/production/module/UseFKt.class
out/production/module/UseGKt.class
out/production/module/UseHKt.class
out/production/module/UseJKt.class
End of files
Compiling files:
src/AChild.kt
src/APartF.kt
src/APartG.kt
src/getA.kt
src/getAChild.kt
src/useF.kt
src/useG.kt
src/useH.kt
src/useJ.kt
End of files
Exit code: ABORT
------------------------------------------
COMPILATION FAILED
Unresolved reference: A
Unresolved reference: A
Unresolved reference: A
Unresolved reference: A
================ Step #2 =================
Compiling files:
src/AChild.kt
src/APartF.kt
src/APartG.kt
src/getAChild.kt
src/useF.kt
src/useG.kt
src/useJ.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1 @@
fun getA() = A()
@@ -0,0 +1 @@
fun getAChild() = AChild()
@@ -0,0 +1,3 @@
fun useF() {
A.f()
}
@@ -0,0 +1,3 @@
fun useF() {
f()
}
@@ -0,0 +1,3 @@
fun useG() {
A.g()
}
@@ -0,0 +1,3 @@
fun useG() {
g()
}
@@ -0,0 +1,3 @@
fun useH() {
getA().h()
}
@@ -0,0 +1,3 @@
fun useJ() {
getAChild().j()
}