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,7 @@
package usage
import inline.*
class UsageVal {
val x: Int by Inline()
}
@@ -0,0 +1,7 @@
package usage
import inline.*
class UsageVar {
var x: Int by Inline()
}
@@ -0,0 +1,48 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineGetKt.class
End of files
Compiling files:
src/inlineGet.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/InlineSetKt.class
End of files
Compiling files:
src/inlineSet.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
------------------------------------------
@@ -0,0 +1,3 @@
package inline
class Inline
@@ -0,0 +1,7 @@
package inline
import kotlin.reflect.KProperty
inline operator fun Inline.getValue(receiver: Any?, prop: KProperty<*>): Int {
return 0
}
@@ -0,0 +1,7 @@
package inline
import kotlin.reflect.KProperty
inline operator fun Inline.getValue(receiver: Any?, prop: KProperty<*>): Int {
return 1
}
@@ -0,0 +1,7 @@
package inline
import kotlin.reflect.KProperty
inline operator fun Inline.setValue(receiver: Any?, prop: KProperty<*>, value: Int) {
println(value)
}
@@ -0,0 +1,7 @@
package inline
import kotlin.reflect.KProperty
inline operator fun Inline.setValue(receiver: Any?, prop: KProperty<*>, value: Int) {
println(value * 2)
}
@@ -0,0 +1,13 @@
================ Step #1 =================
Compiling files:
src/inlineGet.kt
End of files
Exit code: OK
================ Step #2 =================
Compiling files:
src/inlineSet.kt
End of files
Exit code: OK
@@ -0,0 +1,3 @@
package usage
fun other() {}