82574cb570
Only store the ClassId of the enum class and the Name of the entry, and resolve the needed descriptor in getType() instead, which now takes the module instance where that descriptor should be resolved
15 lines
313 B
Plaintext
Vendored
15 lines
313 B
Plaintext
Vendored
package test
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ e: test.E)
|
|
public final val e: test.E
|
|
}
|
|
|
|
@test.Anno(e = E.ENTRY) public open class Class {
|
|
public constructor Class()
|
|
}
|
|
|
|
public final class Subclass : test.Class {
|
|
public constructor Subclass()
|
|
}
|