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 @@
package usage
class Usage {
val x = inline.f()
}
@@ -0,0 +1,22 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/Usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/Usage.class
End of files
Compiling files:
src/Usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,7 @@
package usage
class Usage {
companion object {
val x = inline.f()
}
}
@@ -0,0 +1,23 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/Usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/Usage$Companion.class
out/production/module/usage/Usage.class
End of files
Compiling files:
src/Usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,25 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/Controller.class
out/production/module/usage/UsageKt$async$1.class
out/production/module/usage/UsageKt$bar$1.class
out/production/module/usage/UsageKt.class
End of files
Compiling files:
src/usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(x: Int): Int {
return x - 1
}
@@ -0,0 +1,5 @@
package inline
inline fun f(x: Int): Int {
return x + 1
}
@@ -0,0 +1,23 @@
package usage
import kotlin.coroutines.*
import kotlin.coroutines.intrinsics.*
fun async(x: suspend Controller.() -> Unit) {
x.startCoroutine(Controller(), object : Continuation<Unit> {
override val context: CoroutineContext = null!!
override fun resumeWith(result: Result<Unit>) {}
})
}
class Controller {
suspend fun step(param: Int) = suspendCoroutineUninterceptedOrReturn<Int> { next ->
next.resume(param + 1)
}
}
fun bar() {
async {
val result = step(1)
inline.f(result)
}
}
@@ -0,0 +1,22 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/UsageKt.class
End of files
Compiling files:
src/usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,5 @@
package usage
fun usage() {
val x = inline.f()
}
@@ -0,0 +1,6 @@
package usage
class Usage {
val x: Int
get() = inline.f()
}
@@ -0,0 +1,25 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/Usage.kt
src/topLevelUsage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/TopLevelUsageKt.class
out/production/module/usage/Usage.class
End of files
Compiling files:
src/Usage.kt
src/topLevelUsage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,4 @@
package usage
val y: Int
get() = inline.f()
@@ -0,0 +1,23 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/UsageKt$usage$use$1.class
out/production/module/usage/UsageKt.class
End of files
Compiling files:
src/usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,6 @@
package usage
fun usage() {
val use = { inline.f() }
use()
}
@@ -0,0 +1,22 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/UsageKt.class
End of files
Compiling files:
src/usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,9 @@
package usage
fun usage() {
fun use() {
inline.f()
}
use()
}
@@ -0,0 +1,7 @@
package usage
class Usage {
fun use() {
val x = inline.f()
}
}
@@ -0,0 +1,22 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/Usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/Usage.class
End of files
Compiling files:
src/Usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,22 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/UsageKt.class
End of files
Compiling files:
src/usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,3 @@
package usage
fun usage(x: Int = inline.f()) {}
@@ -0,0 +1,3 @@
package usage
class Usage(val x: Int = inline.f())
@@ -0,0 +1,22 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/Usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/Usage.class
End of files
Compiling files:
src/Usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,3 @@
package usage
class Usage : UsageBase(inline.f())
@@ -0,0 +1,3 @@
package usage
abstract class UsageBase(val x: Int)
@@ -0,0 +1,22 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/Usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/Usage.class
End of files
Compiling files:
src/Usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,5 @@
package usage
class Usage(val x: Int) {
constructor() : this(inline.f())
}
@@ -0,0 +1,22 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/Usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/Usage.class
End of files
Compiling files:
src/Usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,5 @@
package usage
object Usage {
val x = inline.f()
}
@@ -0,0 +1,22 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/Usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/Usage.class
End of files
Compiling files:
src/Usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,22 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class
End of files
Compiling files:
src/inline.kt
End of files
Marked as dirty by Kotlin:
src/usage.kt
Exit code: ADDITIONAL_PASS_REQUIRED
------------------------------------------
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/usage/UsageKt.class
End of files
Compiling files:
src/usage.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 0
}
@@ -0,0 +1,5 @@
package inline
inline fun f(): Int {
return 1
}
@@ -0,0 +1,3 @@
package usage
fun other() {}
@@ -0,0 +1,3 @@
package usage
val x = inline.f()