[KAPT4] KT-51982 Implement generation of @Metadata annotations in Java stubs
Also adds rendering of @Metadata annotations in Kapt3 and Kapt4 tests (currently disabled for a few tests). Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
This commit is contained in:
committed by
Space Team
parent
f40fc1b0c6
commit
2423b7b62f
@@ -1,4 +1,31 @@
|
||||
@kotlin.jvm.JvmInline()
|
||||
/**
|
||||
* public final value class Cl : kotlin/Any {
|
||||
*
|
||||
* // signature: constructor-impl(Ljava/lang/String;)Ljava/lang/String;
|
||||
* public constructor(a: kotlin/String)
|
||||
*
|
||||
* // signature: equals(Ljava/lang/Object;)Z
|
||||
* public open (* synthesized *) operator fun equals(other: kotlin/Any?): kotlin/Boolean
|
||||
*
|
||||
* // signature: hashCode()I
|
||||
* public open (* synthesized *) fun hashCode(): kotlin/Int
|
||||
*
|
||||
* // signature: toString()Ljava/lang/String;
|
||||
* public open (* synthesized *) fun toString(): kotlin/String
|
||||
*
|
||||
* // field: a:Ljava/lang/String;
|
||||
* // getter: getA()Ljava/lang/String;
|
||||
* public final val a: kotlin/String
|
||||
* public final get
|
||||
*
|
||||
* // underlying property: a
|
||||
*
|
||||
* // underlying type: kotlin/String
|
||||
*
|
||||
* // module name: main
|
||||
* }
|
||||
*/
|
||||
@kotlin.Metadata()
|
||||
public final class Cl {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user