Files
Dmitriy Dolovov d30efdb001 [kotlinp] Split :tools:kotlinp into "common" and "jvm" subprojects
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
2024-02-13 21:01:08 +00:00

47 lines
1.1 KiB
Plaintext
Vendored

// A.class
// ------------------------------------------
public final class A : kotlin/Any {
// signature: <init>()V
public constructor()
// field: constantDouble:D
// getter: getConstantDouble()D
public final val constantDouble: kotlin/Double /* = ... */
public final get
// field: constantInt:I
// getter: getConstantInt()I
public final val constantInt: kotlin/Int /* = ... */
public final get
// field: constantNull:Ljava/lang/String;
// getter: getConstantNull()Ljava/lang/String;
public final val constantNull: kotlin/String?
public final get
// field: constantString:Ljava/lang/String;
// getter: getConstantString()Ljava/lang/String;
public final val constantString: kotlin/String /* = ... */
public final get
// module name: test-module
}
// ConstantsKt.class
// ------------------------------------------
package {
// field: four:I
public final const val four: kotlin/Int /* = ... */
public final get
// module name: test-module
}
// META-INF/test-module.kotlin_module
// ------------------------------------------
module {
package <root> {
ConstantsKt
}
}