mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
This proved to be a fragile technique, which probably doesn't even improve performance in most cases but has lots of unexpected problems: unconditional initialization of reflection classes, increasing the size of the bytecode, bugs with <clinit> in annotations on JVM 6, inability to support conversion of a class from Kotlin to Java without recompiling clients which use it reflectively, etc.
26 lines
1.0 KiB
Plaintext
Vendored
26 lines
1.0 KiB
Plaintext
Vendored
@kotlin.jvm.internal.KotlinClass A {
|
|
private @AnnField field p: int
|
|
private @AnnField field x: int
|
|
private field y: int
|
|
private synthetic deprecated @AnnProp @AnnProp2 method p$annotations(): void
|
|
public @AnnGetter method getP(): int
|
|
public @AnnSetter method setP(@AnnParam p0: int): void
|
|
private synthetic deprecated @AnnProp2 method x$annotations(): void
|
|
public method getX(): int
|
|
public @AnnGetter method getY(): int
|
|
public @AnnSetter method setY(p0: int): void
|
|
public method <init>(@AnnParam p0: int, @AnnParam p1: int): void
|
|
}
|
|
|
|
@java.lang.annotation.Retention @kotlin.jvm.internal.KotlinClass AnnField
|
|
|
|
@java.lang.annotation.Retention @kotlin.jvm.internal.KotlinClass AnnGetter
|
|
|
|
@java.lang.annotation.Retention @kotlin.jvm.internal.KotlinClass AnnParam
|
|
|
|
@java.lang.annotation.Retention @kotlin.jvm.internal.KotlinClass AnnProp
|
|
|
|
@java.lang.annotation.Retention @kotlin.jvm.internal.KotlinClass AnnProp2
|
|
|
|
@java.lang.annotation.Retention @kotlin.jvm.internal.KotlinClass AnnSetter
|