c4255f9a9e
This commit adds missing pieces for the puzzle: Annotation instantiation feature uses IrProperty's initializer to instantiate properties from other modules that have default values which weren't specified on call site. To support this feature properly, Fir2IrVisitor should fill LazyIrProperty's backing field initializer with information from Fir. To get this information into Fir, FirMemberDeserializer should be able to read it from KotlinJvmBinaryClass with AnnotationLoaderVisitorImpl. (klibs are unsupported for now) There's a catch with enum entries references: we can't access session.SymbolProvider to resolve it because we're still at the deserialization stage, and it can cause StackOverflow if enum is nested in the same class (see RequiresOptIn.Level). To mitigate this, a new FirEnumEntryDeserializedAccessExpression is produced instead; it is later replaced with the correct reference in the Fir2IrVisitor. ^KT-58137 Fixed Also add test to loadJava folder with annotations default values that verifies metadata loading
64 lines
3.9 KiB
Plaintext
Vendored
64 lines
3.9 KiB
Plaintext
Vendored
package test
|
|
|
|
public final annotation class A : kotlin.Annotation {
|
|
/*primary*/ public constructor A(/*0*/ i: kotlin.Int = ..., /*1*/ s: kotlin.String = ..., /*2*/ kClass: kotlin.reflect.KClass<*> = ..., /*3*/ kClassArray: kotlin.Array<kotlin.reflect.KClass<*>> = ..., /*4*/ e: test.E = ..., /*5*/ anno: test.Empty = ..., /*6*/ aS: kotlin.Array<kotlin.String> = ..., /*7*/ aI: kotlin.IntArray = ...)
|
|
public final val aI: kotlin.IntArray = {1, 2}
|
|
public final fun `<get-aI>`(): kotlin.IntArray
|
|
public final val aS: kotlin.Array<kotlin.String> = {"a", "b"}
|
|
public final fun `<get-aS>`(): kotlin.Array<kotlin.String>
|
|
public final val anno: test.Empty = test.Empty
|
|
public final fun `<get-anno>`(): test.Empty
|
|
public final val e: test.E = E.E0
|
|
public final fun `<get-e>`(): test.E
|
|
public final val i: kotlin.Int = 42
|
|
public final fun `<get-i>`(): kotlin.Int
|
|
public final val kClass: kotlin.reflect.KClass<*> = kotlin.Int::class
|
|
public final fun `<get-kClass>`(): kotlin.reflect.KClass<*>
|
|
public final val kClassArray: kotlin.Array<kotlin.reflect.KClass<*>> = {test.A::class}
|
|
public final fun `<get-kClassArray>`(): kotlin.Array<kotlin.reflect.KClass<*>>
|
|
public final val s: kotlin.String = "foo"
|
|
public final fun `<get-s>`(): kotlin.String
|
|
}
|
|
|
|
public final enum class E : kotlin.Enum<test.E> {
|
|
enum entry E0
|
|
|
|
/*primary*/ private constructor E()
|
|
@kotlin.internal.IntrinsicConstEvaluation public final override /*1*/ /*fake_override*/ val name: kotlin.String
|
|
public final override /*1*/ /*fake_override*/ fun `<get-name>`(): kotlin.String
|
|
public final override /*1*/ /*fake_override*/ val ordinal: kotlin.Int
|
|
public final override /*1*/ /*fake_override*/ fun `<get-ordinal>`(): kotlin.Int
|
|
protected final override /*1*/ /*fake_override*/ fun clone(): kotlin.Any
|
|
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.E): kotlin.Int
|
|
protected/*protected and package*/ final override /*1*/ /*fake_override*/ /*isHiddenForResolutionEverywhereBesideSupercalls*/ fun finalize(): kotlin.Unit
|
|
public final override /*1*/ /*fake_override*/ /*isHiddenForResolutionEverywhereBesideSupercalls*/ fun getDeclaringClass(): java.lang.Class<test.E!>!
|
|
|
|
// Static members
|
|
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<test.E>
|
|
public final /*synthesized*/ fun `<get-entries>`(): kotlin.enums.EnumEntries<test.E>
|
|
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.E
|
|
public final /*synthesized*/ fun values(): kotlin.Array<test.E>
|
|
}
|
|
|
|
public final annotation class Empty : kotlin.Annotation {
|
|
/*primary*/ public constructor Empty()
|
|
}
|
|
|
|
public final annotation class OtherArrays : kotlin.Annotation {
|
|
/*primary*/ public constructor OtherArrays(/*0*/ doublesArray: kotlin.DoubleArray = ..., /*1*/ enumArray: kotlin.Array<kotlin.text.RegexOption> = ..., /*2*/ annotationsArray: kotlin.Array<kotlin.jvm.JvmStatic> = ..., /*3*/ namesArray: kotlin.Array<kotlin.jvm.JvmName> = ...)
|
|
public final val annotationsArray: kotlin.Array<kotlin.jvm.JvmStatic> = {}
|
|
public final fun `<get-annotationsArray>`(): kotlin.Array<kotlin.jvm.JvmStatic>
|
|
public final val doublesArray: kotlin.DoubleArray = {1.5.toDouble()}
|
|
public final fun `<get-doublesArray>`(): kotlin.DoubleArray
|
|
public final val enumArray: kotlin.Array<kotlin.text.RegexOption> = {RegexOption.IGNORE_CASE}
|
|
public final fun `<get-enumArray>`(): kotlin.Array<kotlin.text.RegexOption>
|
|
public final val namesArray: kotlin.Array<kotlin.jvm.JvmName> = {kotlin.jvm.JvmName(name = "foo")}
|
|
public final fun `<get-namesArray>`(): kotlin.Array<kotlin.jvm.JvmName>
|
|
}
|
|
|
|
public final annotation class UnsignedValue : kotlin.Annotation {
|
|
/*primary*/ public constructor UnsignedValue(/*0*/ uint: kotlin.UInt = ...)
|
|
public final val uint: kotlin.UInt = -2147483639.toUInt()
|
|
public final fun `<get-uint>`(): kotlin.UInt
|
|
}
|