KT-59293 [SLC] Fix generation of DefaultImpls classes
This commit is contained in:
committed by
Space Team
parent
896f8853ae
commit
c3746652a4
Vendored
+20
-4
@@ -1,18 +1,34 @@
|
||||
public abstract interface C /* p.C*/ extends p.B {
|
||||
public abstract interface C /* p.C*/<T> extends p.B {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public abstract java.lang.String c();// c()
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public abstract java.lang.String more();// more()
|
||||
|
||||
public abstract int getProp3();// getProp3()
|
||||
|
||||
public abstract void setProp3(int);// setProp3(int)
|
||||
|
||||
public static final class DefaultImpls /* p.C.DefaultImpls*/ {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static java.lang.String a(@org.jetbrains.annotations.NotNull() p.C);// a(p.C)
|
||||
public static <T> java.lang.String a(@org.jetbrains.annotations.NotNull() p.C<T>);// <T> a(p.C<T>)
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static java.lang.String b(@org.jetbrains.annotations.NotNull() p.C);// b(p.C)
|
||||
public static <T> java.lang.String b(@org.jetbrains.annotations.NotNull() p.C<T>);// <T> b(p.C<T>)
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static java.lang.String c(@org.jetbrains.annotations.NotNull() p.C);// c(p.C)
|
||||
public static <T> java.lang.String c(@org.jetbrains.annotations.NotNull() p.C<T>);// <T> c(p.C<T>)
|
||||
|
||||
public static <T> int getProp1(@org.jetbrains.annotations.NotNull() p.C<T>);// <T> getProp1(p.C<T>)
|
||||
|
||||
public static <T> int getProp2(@org.jetbrains.annotations.NotNull() p.C<T>);// <T> getProp2(p.C<T>)
|
||||
|
||||
public static <T> int getProp3(@org.jetbrains.annotations.NotNull() p.C<T>);// <T> getProp3(p.C<T>)
|
||||
|
||||
public static <T> void setProp1(@org.jetbrains.annotations.NotNull() p.C<T>, int);// <T> setProp1(p.C<T>, int)
|
||||
|
||||
public static <T> void setProp2(@org.jetbrains.annotations.NotNull() p.C<T>, int);// <T> setProp2(p.C<T>, int)
|
||||
|
||||
public static <T> void setProp3(@org.jetbrains.annotations.NotNull() p.C<T>, int);// <T> setProp3(p.C<T>, int)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user