Skip to content

Commit

Permalink
Dump API
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Sep 13, 2023
1 parent c6930c4 commit a20703d
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions ksp/annotations/api/annotations.api
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
public abstract interface annotation class dev/kord/codegen/ksp/annotations/Either : java/lang/annotation/Annotation {
public abstract fun exclusive ()Z
public abstract fun names ()[Ljava/lang/String;
}

public abstract interface annotation class dev/kord/codegen/ksp/annotations/Either$Container : java/lang/annotation/Annotation {
public abstract fun value ()[Ldev/kord/codegen/ksp/annotations/Either;
}

public abstract interface annotation class dev/kord/codegen/ksp/annotations/NullIfDefault : java/lang/annotation/Annotation {
}

Expand All @@ -9,3 +18,65 @@ public abstract interface annotation class dev/kord/codegen/ksp/annotations/Proc
public abstract fun packageName ()Ljava/lang/String;
}

public final class dev/kord/codegen/ksp/processor/Either {
public static final field Companion Ldev/kord/codegen/ksp/processor/Either$Companion;
public synthetic fun <init> (Ljava/util/List;ZLkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/util/List;
public final fun component2 ()Z
public final fun copy (Ljava/util/List;Z)Ldev/kord/codegen/ksp/processor/Either;
public static synthetic fun copy$default (Ldev/kord/codegen/ksp/processor/Either;Ljava/util/List;ZILjava/lang/Object;)Ldev/kord/codegen/ksp/processor/Either;
public fun equals (Ljava/lang/Object;)Z
public final fun getExclusive ()Z
public final fun getNames ()Ljava/util/List;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}

public final class dev/kord/codegen/ksp/processor/Either$Companion {
public final fun Either (Lcom/google/devtools/ksp/symbol/KSAnnotation;)Ldev/kord/codegen/ksp/processor/Either;
}

public final class dev/kord/codegen/ksp/processor/EitherKt {
public static final fun getEithers (Lcom/google/devtools/ksp/symbol/KSAnnotated;)Lkotlin/sequences/Sequence;
}

public final class dev/kord/codegen/ksp/processor/OtherIfDefault {
public static final field Companion Ldev/kord/codegen/ksp/processor/OtherIfDefault$Companion;
public synthetic fun <init> (Ljava/lang/String;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun copy (Ljava/lang/String;)Ldev/kord/codegen/ksp/processor/OtherIfDefault;
public static synthetic fun copy$default (Ldev/kord/codegen/ksp/processor/OtherIfDefault;Ljava/lang/String;ILjava/lang/Object;)Ldev/kord/codegen/ksp/processor/OtherIfDefault;
public fun equals (Ljava/lang/Object;)Z
public final fun getName ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}

public final class dev/kord/codegen/ksp/processor/OtherIfDefault$Companion {
public final fun OtherIfDefault (Lcom/google/devtools/ksp/symbol/KSAnnotation;)Ldev/kord/codegen/ksp/processor/OtherIfDefault;
}

public final class dev/kord/codegen/ksp/processor/OtherIfDefaultKt {
public static final fun getOtherIfDefault (Lcom/google/devtools/ksp/symbol/KSAnnotated;)Ldev/kord/codegen/ksp/processor/OtherIfDefault;
}

public final class dev/kord/codegen/ksp/processor/ProcessorAnnotation {
public static final field Companion Ldev/kord/codegen/ksp/processor/ProcessorAnnotation$Companion;
public synthetic fun <init> (Ljava/lang/String;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun copy (Ljava/lang/String;)Ldev/kord/codegen/ksp/processor/ProcessorAnnotation;
public static synthetic fun copy$default (Ldev/kord/codegen/ksp/processor/ProcessorAnnotation;Ljava/lang/String;ILjava/lang/Object;)Ldev/kord/codegen/ksp/processor/ProcessorAnnotation;
public fun equals (Ljava/lang/Object;)Z
public final fun getPackageName ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}

public final class dev/kord/codegen/ksp/processor/ProcessorAnnotation$Companion {
public final fun ProcessorAnnotation (Lcom/google/devtools/ksp/symbol/KSAnnotation;)Ldev/kord/codegen/ksp/processor/ProcessorAnnotation;
}

public final class dev/kord/codegen/ksp/processor/ProcessorAnnotationKt {
public static final fun getProcessorAnnotation (Lcom/google/devtools/ksp/symbol/KSAnnotated;)Ldev/kord/codegen/ksp/processor/ProcessorAnnotation;
}

0 comments on commit a20703d

Please sign in to comment.