Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
+22
@@ -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
|
||||
------------------------------------------
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
kotlin-data-container
|
||||
data-container-format-version.txt
|
||||
counters.tab
|
||||
file-to-id.tab
|
||||
id-to-file.tab
|
||||
lookups.tab
|
||||
Module 'module' production
|
||||
format-version.txt
|
||||
jvm-build-meta-info.txt
|
||||
inline-functions.tab
|
||||
internal-name-to-source.tab
|
||||
package-parts.tab
|
||||
proto.tab
|
||||
source-to-classes.tab
|
||||
Module 'module' tests
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package inline
|
||||
|
||||
inline fun f() {}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package inline
|
||||
|
||||
inline fun f() {
|
||||
println("changed")
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package usage
|
||||
|
||||
inline fun use() {
|
||||
inline.f()
|
||||
}
|
||||
Reference in New Issue
Block a user