diff --git a/plugins/kapt3/kapt3-compiler/testData/converter/properties.fir.txt b/plugins/kapt3/kapt3-compiler/testData/converter/properties.fir.txt index 7af45f133cf..a471d402739 100644 --- a/plugins/kapt3/kapt3-compiler/testData/converter/properties.fir.txt +++ b/plugins/kapt3/kapt3-compiler/testData/converter/properties.fir.txt @@ -1,3 +1,54 @@ +/** + * public final class Test : kotlin/Any { + * + * // signature: ()V + * public constructor() + * + * // field: constClassValue:Lkotlin/reflect/KClass; + * // getter: getConstClassValue()Lkotlin/reflect/KClass; + * public final val constClassValue: kotlin/reflect/KClass<*> (* = ... *) + * public final get + * + * // field: constJavaClassValue:Ljava/lang/Class; + * // getter: getConstJavaClassValue()Ljava/lang/Class; + * public final val constJavaClassValue: java/lang/Class<*> + * public final get + * + * // field: getter:Ljava/lang/String; + * // getter: getGetter()Ljava/lang/String; + * public final val getter: kotlin/String (* = ... *) + * public final (* non-default *) get + * + * // field: inferType:Ljava/lang/String; + * // getter: getInferType()Ljava/lang/String; + * public final val inferType: kotlin/String + * public final get + * + * // field: simple:Ljava/lang/String; + * // getter: getSimple()Ljava/lang/String; + * public final val simple: kotlin/String (* = ... *) + * public final get + * + * // field: unit:Lkotlin/Unit; + * // getter: getUnit()Lkotlin/Unit; + * // setter: setUnit(Lkotlin/Unit;)V + * // synthetic method for annotations: getUnit$annotations()V + * public final var unit: kotlin/Unit + * public final get + * public final set + * + * // field: isBoolean:Z + * // getter: isBoolean()Z + * // setter: setBoolean(Z)V + * // synthetic method for annotations: isBoolean$annotations()V + * public final var isBoolean: kotlin/Boolean + * public final get + * public final set + * + * // module name: main + * } + */ +@kotlin.Metadata() public final class Test { @org.jetbrains.annotations.NotNull() private final java.lang.String simple = "123"; diff --git a/plugins/kapt3/kapt3-compiler/testData/converter/properties.kt b/plugins/kapt3/kapt3-compiler/testData/converter/properties.kt index 555dc972741..5115a9b04bc 100644 --- a/plugins/kapt3/kapt3-compiler/testData/converter/properties.kt +++ b/plugins/kapt3/kapt3-compiler/testData/converter/properties.kt @@ -1,6 +1,3 @@ -// STRIP_METADATA -// TODO: Re-enable metadata generation - class Test { val simple: String = "123" diff --git a/plugins/kapt3/kapt3-compiler/testData/converter/properties.txt b/plugins/kapt3/kapt3-compiler/testData/converter/properties.txt index 252c24610cf..ff9977687b0 100644 --- a/plugins/kapt3/kapt3-compiler/testData/converter/properties.txt +++ b/plugins/kapt3/kapt3-compiler/testData/converter/properties.txt @@ -1,3 +1,54 @@ +/** + * public final class Test : kotlin/Any { + * + * // signature: ()V + * public constructor() + * + * // field: constClassValue:Lkotlin/reflect/KClass; + * // getter: getConstClassValue()Lkotlin/reflect/KClass; + * public final val constClassValue: kotlin/reflect/KClass<*> + * public final get + * + * // field: constJavaClassValue:Ljava/lang/Class; + * // getter: getConstJavaClassValue()Ljava/lang/Class; + * public final val constJavaClassValue: java/lang/Class<*> + * public final get + * + * // field: getter:Ljava/lang/String; + * // getter: getGetter()Ljava/lang/String; + * public final val getter: kotlin/String (* = ... *) + * public final (* non-default *) get + * + * // field: inferType:Ljava/lang/String; + * // getter: getInferType()Ljava/lang/String; + * public final val inferType: kotlin/String (* = ... *) + * public final get + * + * // field: simple:Ljava/lang/String; + * // getter: getSimple()Ljava/lang/String; + * public final val simple: kotlin/String (* = ... *) + * public final get + * + * // field: unit:Lkotlin/Unit; + * // getter: getUnit()Lkotlin/Unit; + * // setter: setUnit(Lkotlin/Unit;)V + * // synthetic method for annotations: getUnit$annotations()V + * public final var unit: kotlin/Unit + * public final get + * public final set + * + * // field: isBoolean:Z + * // getter: isBoolean()Z + * // setter: setBoolean(Z)V + * // synthetic method for annotations: isBoolean$annotations()V + * public final var isBoolean: kotlin/Boolean + * public final get + * public final set + * + * // module name: main + * } + */ +@kotlin.Metadata() public final class Test { @org.jetbrains.annotations.NotNull() private final java.lang.String simple = "123";