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
This commit is contained in:
Alexander Udalov
2017-02-02 16:13:30 +03:00
parent 81e083a133
commit 0db60bf6cb
34 changed files with 166 additions and 60 deletions
@@ -6,7 +6,7 @@ public final class AX {
public final @org.jetbrains.annotations.NotNull method aNonStatic(): java.lang.String
public final static @kotlin.jvm.JvmStatic @org.jetbrains.annotations.NotNull method aStatic(): java.lang.String
public final static @kotlin.jvm.JvmStatic @org.jetbrains.annotations.NotNull method b(): java.lang.String
private synthetic deprecated static @kotlin.jvm.JvmStatic method c$annotations(): void
public synthetic deprecated static @kotlin.jvm.JvmStatic method c$annotations(): void
public final static @org.jetbrains.annotations.NotNull method getC(): java.lang.String
public final @org.jetbrains.annotations.NotNull method getProperty(): java.lang.String
}