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,5 @@
import org.jetbrains.annotations.Nullable;
class A {
@Nullable String s = "A.s";
}
@@ -0,0 +1,5 @@
import org.jetbrains.annotations.NotNull;
class A {
@NotNull String s = "A.s";
}
@@ -0,0 +1 @@
internal class AChild : A()
@@ -0,0 +1,19 @@
================ Step #1 =================
Cleaning output files:
out/production/module/A.class
End of files
Exit code: NOTHING_DONE
------------------------------------------
Compiling files:
src/A.java
End of files
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/UseAKt.class
End of files
Compiling files:
src/useA.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,7 @@
================ Step #1 =================
Compiling files:
src/useA.kt
src/AChild.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,3 @@
fun useA() {
A().s
}