Files
kotlin-fork/compiler/testData/asJava/lightClasses/lightClassByPsi/propertyAnnotations.descriptors.java
T
Dmitrii Gridin af5f76048b [SLC] AbstractSymbolLightClassesByPsiTest: add more stable order
Now more diff between sources and libraries are readable.
Also prefer .descriptors to .fir as FIR is a first-class support

^KT-62892
2024-01-03 21:35:12 +00:00

70 lines
2.3 KiB
Java
Vendored

@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 class O /* O*/ {
private final int protectedProperty;
private final int getPrivateProperty();// getPrivateProperty()
protected final int getProtectedProperty();// getProtectedProperty()
public O();// .ctor()
}
public final class PropertyAnnotationsKt /* PropertyAnnotationsKt*/ {
@kotlin.jvm.Transient()
@kotlin.jvm.Volatile()
private static transient volatile int jvmFlags;
@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;
@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 getExtensionProperty1(@Anno(p = "receiver") @org.jetbrains.annotations.NotNull() T);// <T> getExtensionProperty1(T)
public static final <T> int getExtensionProperty2(@Anno(p = "receiver") @org.jetbrains.annotations.NotNull() java.util.List<? extends T>);// <T> getExtensionProperty2(java.util.List<? extends T>)
public static final <X, Y extends java.util.List<? extends X>, Z extends java.util.Map<X, ? extends Y>> int getExtensionProperty3(@Anno(p = "receiver") @org.jetbrains.annotations.NotNull() Z);// <X, Y extends java.util.List<? extends X>, Z extends java.util.Map<X, ? extends Y>> getExtensionProperty3(Z)
public static final int getDeprecated();// getDeprecated()
public static final int getJvmFlags();// getJvmFlags()
public static final void setJvmFlags(int);// setJvmFlags(int)
}