Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package usage
|
||||
|
||||
import inline.Inline
|
||||
|
||||
class UsageVal {
|
||||
val x: Int by Inline()
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package usage
|
||||
|
||||
import inline.Inline
|
||||
|
||||
class UsageVar {
|
||||
var x: Int by Inline()
|
||||
}
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/inline/Inline.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/inline.kt
|
||||
End of files
|
||||
Marked as dirty by Kotlin:
|
||||
src/UsageVal.kt
|
||||
src/UsageVar.kt
|
||||
Exit code: ADDITIONAL_PASS_REQUIRED
|
||||
------------------------------------------
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/usage/UsageVal.class
|
||||
out/production/module/usage/UsageVar.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/UsageVal.kt
|
||||
src/UsageVar.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
|
||||
================ Step #2 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/inline/Inline.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/inline.kt
|
||||
End of files
|
||||
Marked as dirty by Kotlin:
|
||||
src/UsageVar.kt
|
||||
Exit code: ADDITIONAL_PASS_REQUIRED
|
||||
------------------------------------------
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/usage/UsageVar.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/UsageVar.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
package inline
|
||||
|
||||
import kotlin.reflect.KProperty
|
||||
|
||||
class Inline {
|
||||
inline operator fun getValue(receiver: Any?, prop: KProperty<*>): Int {
|
||||
return 0
|
||||
}
|
||||
|
||||
inline operator fun setValue(receiver: Any?, prop: KProperty<*>, value: Int) {
|
||||
println(value)
|
||||
}
|
||||
}
|
||||
jps/jps-plugin/testData/incremental/pureKotlin/delegatedPropertyInlineMethodAccessor/inline.kt.new.1
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
package inline
|
||||
|
||||
import kotlin.reflect.KProperty
|
||||
|
||||
class Inline {
|
||||
inline operator fun getValue(receiver: Any?, prop: KProperty<*>): Int {
|
||||
return 1
|
||||
}
|
||||
|
||||
inline operator fun setValue(receiver: Any?, prop: KProperty<*>, value: Int) {
|
||||
println(value)
|
||||
}
|
||||
}
|
||||
jps/jps-plugin/testData/incremental/pureKotlin/delegatedPropertyInlineMethodAccessor/inline.kt.new.2
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
package inline
|
||||
|
||||
import kotlin.reflect.KProperty
|
||||
|
||||
class Inline {
|
||||
inline operator fun getValue(receiver: Any?, prop: KProperty<*>): Int {
|
||||
return 1
|
||||
}
|
||||
|
||||
inline operator fun setValue(receiver: Any?, prop: KProperty<*>, value: Int) {
|
||||
println(value * 2)
|
||||
}
|
||||
}
|
||||
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Compiling files:
|
||||
src/inline.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
|
||||
================ Step #2 =================
|
||||
|
||||
Compiling files:
|
||||
src/inline.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
package usage
|
||||
|
||||
fun other() {}
|
||||
Reference in New Issue
Block a user