d30efdb001
The "common" subproject keeps only backend-neutral logic and depends only on :kotlinx-metadata library. It takes the name of the former project - :tools:kotlinp The "jvm" subproject depends on the "common" one and also depends on :kotlinx-metadata-jvm. It gets the new name - :tools:kotlinp-jvm There is a lot of touched files in this commit. The majority of them is just moved files (tests, test data, etc). Only the following files were actually modified: .space/CODEOWNERS build.gradle.kts libraries/tools/abi-comparator/build.gradle.kts libraries/tools/kotlinp/build.gradle.kts libraries/tools/kotlinp/jvm/build.gradle.kts plugins/kapt3/kapt3-compiler/build.gradle.kts settings.gradle ^KT-62340
56 lines
1.2 KiB
Plaintext
Vendored
56 lines
1.2 KiB
Plaintext
Vendored
// test/D.class
|
|
// ------------------------------------------
|
|
public final annotation class test/D : kotlin/Annotation {
|
|
|
|
// signature: <init>()V
|
|
public constructor()
|
|
|
|
// module name: test-module
|
|
}
|
|
// test/OptionalAnnotationKt.class
|
|
// ------------------------------------------
|
|
package {
|
|
|
|
// signature: ok()V
|
|
public final fun ok(): kotlin/Unit
|
|
|
|
// module name: test-module
|
|
}
|
|
// META-INF/test-module.kotlin_module
|
|
// ------------------------------------------
|
|
module {
|
|
package test {
|
|
test/OptionalAnnotationKt
|
|
}
|
|
|
|
// Optional annotations
|
|
|
|
public final expect annotation class test/A : kotlin/Annotation {
|
|
|
|
// signature: <init>(I)V
|
|
public constructor(x: kotlin/Int)
|
|
|
|
public final expect val x: kotlin/Int
|
|
public final get
|
|
|
|
// module name: main
|
|
}
|
|
public final expect annotation class test/B : kotlin/Annotation {
|
|
|
|
// signature: <init>(Lkotlin/Array;)V
|
|
public constructor(a: kotlin/Array<kotlin/String>)
|
|
|
|
public final expect val a: kotlin/Array<kotlin/String>
|
|
public final get
|
|
|
|
// module name: main
|
|
}
|
|
public final expect annotation class test/C : kotlin/Annotation {
|
|
|
|
// signature: <init>()V
|
|
public constructor()
|
|
|
|
// module name: main
|
|
}
|
|
}
|