From 70c3a0a2449ccdf8a7cbe3a143ad455088d6d00f Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Wed, 12 Oct 2016 04:00:25 +0300 Subject: [PATCH] Include new annotations (SinceKotlin, ParameterName) in public API reference. --- .../reference-public-api/kotlin-runtime.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libraries/tools/binary-compatibility-validator/reference-public-api/kotlin-runtime.txt b/libraries/tools/binary-compatibility-validator/reference-public-api/kotlin-runtime.txt index 3e5c0e42cf1..c4a7feee235 100644 --- a/libraries/tools/binary-compatibility-validator/reference-public-api/kotlin-runtime.txt +++ b/libraries/tools/binary-compatibility-validator/reference-public-api/kotlin-runtime.txt @@ -30,11 +30,19 @@ public class kotlin/NoWhenBranchMatchedException : java/lang/RuntimeException { public fun (Ljava/lang/Throwable;)V } +public abstract interface annotation class kotlin/ParameterName : java/lang/annotation/Annotation { + public abstract fun name ()Ljava/lang/String; +} + public abstract interface annotation class kotlin/ReplaceWith : java/lang/annotation/Annotation { public abstract fun expression ()Ljava/lang/String; public abstract fun imports ()[Ljava/lang/String; } +public abstract interface annotation class kotlin/SinceKotlin : java/lang/annotation/Annotation { + public abstract fun version ()Ljava/lang/String; +} + public abstract interface annotation class kotlin/Suppress : java/lang/annotation/Annotation { public abstract fun names ()[Ljava/lang/String; }