Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
Vendored
+36
@@ -0,0 +1,36 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Marked as dirty by Kotlin:
|
||||
src/other.kt
|
||||
src/usage.kt
|
||||
Cleaning output files:
|
||||
out/production/module/B.class
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/UsageKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/other.kt
|
||||
src/usage.kt
|
||||
End of files
|
||||
Exit code: ABORT
|
||||
------------------------------------------
|
||||
COMPILATION FAILED
|
||||
Expecting an expression
|
||||
|
||||
================ Step #2 =================
|
||||
|
||||
Compiling files:
|
||||
src/other.kt
|
||||
src/usage.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/UsageKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/usage.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
class A {
|
||||
fun f() {
|
||||
}
|
||||
}
|
||||
jps/jps-plugin/testData/incremental/pureKotlin/compilationErrorThenFixedWithPhantomPart3/likePart.kt
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package new
|
||||
|
||||
fun f() {
|
||||
|
||||
}
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
class B {
|
||||
fun f() {
|
||||
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package new
|
||||
|
||||
class B {
|
||||
fun f() {
|
||||
|
||||
}
|
||||
}
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
import new.*
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
A().f()
|
||||
B().f()
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import new.*
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
B().f(
|
||||
A().f(
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import new.*
|
||||
fun main(args: Array<String>) {
|
||||
A().f()
|
||||
B().f()
|
||||
}
|
||||
Reference in New Issue
Block a user