Files
kotlin-fork/compiler/testData/codegen/light-analysis/jvmStatic/propertyAccess.txt
T
Alexander Udalov 0db60bf6cb Do not always generate synthetic "$annotations" as private
Since annotations are a part of the declaration, they must have the same
visibility as the declaration in the bytecode. Otherwise obfuscators like
Proguard might strip the "$annotations" method and no annotations would be
found via Kotlin reflection

 #KT-15993 Fixed
2017-02-03 19:35:15 +03:00

25 lines
1.1 KiB
Plaintext
Vendored

@kotlin.Metadata
public final class A {
public final static field INSTANCE: A
private static field a: int
private static field b: int
private static field c: int
private method <init>(): void
public synthetic deprecated static @kotlin.jvm.JvmStatic method a$annotations(): void
public final static method getA(): int
public final static @kotlin.jvm.JvmStatic method getB(): int
public final method getC(): int
public final static method setA(p0: int): void
public final method setB(p0: int): void
public final static @kotlin.jvm.JvmStatic method setC(p0: int): void
}
@kotlin.Metadata
public final class PropertyAccessKt {
private static @org.jetbrains.annotations.NotNull field holder: java.lang.String
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
public final static @org.jetbrains.annotations.NotNull method getA(): A
public final static @org.jetbrains.annotations.NotNull method getHolder(): java.lang.String
public final static method setHolder(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
}