Render annotation arguments in bytecodeListing tests

This commit is contained in:
Alexander Udalov
2021-07-20 00:43:19 +02:00
parent 7958307d28
commit 104188c035
46 changed files with 243 additions and 199 deletions
@@ -2,18 +2,18 @@
public class Base {
// source: 'hidden.kt'
public method <init>(): void
public synthetic deprecated @kotlin.Deprecated method f(): void
public synthetic deprecated @kotlin.Deprecated(message="", level=HIDDEN) method f(): void
}
@kotlin.Metadata
public final class Derived {
// source: 'hidden.kt'
public synthetic deprecated @kotlin.Deprecated method <init>(): void
public synthetic deprecated @kotlin.Deprecated(message="", level=HIDDEN) method <init>(): void
public synthetic method f(): void
}
@kotlin.Metadata
public final class HiddenKt {
// source: 'hidden.kt'
public synthetic deprecated final static @kotlin.Deprecated @kotlin.DeprecatedSinceKotlin method hidden(): void
public synthetic deprecated final static @kotlin.Deprecated(message="") @kotlin.DeprecatedSinceKotlin(hiddenSince="1.0") method hidden(): void
}