[SLC] KT-54804 Erase type and drop receiver annotations in $annotations methods

This commit is contained in:
Pavel Mikhailovskii
2023-06-01 18:22:03 +00:00
committed by Space Team
parent 6d06f29326
commit 0ef31501b1
14 changed files with 279 additions and 28 deletions
@@ -0,0 +1,53 @@
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface Anno /* Anno*/ {
public abstract java.lang.String p() default "";// p()
}
public final class C /* C*/ {
@org.jetbrains.annotations.NotNull()
public static final C.Companion Companion;
private static final int x;
private static final int y;
public C();// .ctor()
public static final int getY();// getY()
class Companion ...
}
public static final class Companion /* C.Companion*/ {
private Companion();// .ctor()
public final int getX();// getX()
public final int getY();// getY()
}
public final class PropertyAnnotationsKt /* PropertyAnnotationsKt*/ {
@org.jetbrains.annotations.NotNull()
private static final java.lang.String nonNullable;
@org.jetbrains.annotations.Nullable()
private static final java.lang.String nullable;
private static final int deprecated;
private static transient volatile int jvmFlags;
@org.jetbrains.annotations.NotNull()
public static final java.lang.String getNonNullable();// getNonNullable()
@org.jetbrains.annotations.Nullable()
public static final java.lang.String getNullable();// getNullable()
public static final <T> int getExtensionProperty(@Anno(p = "receiver") @org.jetbrains.annotations.NotNull() java.util.List<? extends T>);// <T> getExtensionProperty(java.util.List<? extends T>)
public static final int getDeprecated();// getDeprecated()
public static final int getJvmFlags();// getJvmFlags()
public static final void setJvmFlags(int);// setJvmFlags(int)
}