2423b7b62f
Also adds rendering of @Metadata annotations in Kapt3 and Kapt4 tests (currently disabled for a few tests). Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
73 lines
1.6 KiB
Plaintext
Vendored
73 lines
1.6 KiB
Plaintext
Vendored
/**
|
|
* public abstract class Cls : kotlin/Any {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // signature: bar(I)Ljava/lang/String;
|
|
* public final fun bar(bcd: kotlin/Int): kotlin/String
|
|
*
|
|
* // signature: foo(Ljava/lang/String;)V
|
|
* public abstract fun foo(abc: kotlin/String): kotlin/Unit
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
public abstract class Cls {
|
|
|
|
public Cls() {
|
|
super();
|
|
}
|
|
|
|
public abstract void foo(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String abc);
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String bar(int bcd) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
/**
|
|
* public abstract interface Intf : kotlin/Any {
|
|
*
|
|
* // signature: bar(I)Ljava/lang/String;
|
|
* public open fun bar(bcd: kotlin/Int): kotlin/String
|
|
*
|
|
* // signature: foo(Ljava/lang/String;)V
|
|
* public abstract fun foo(abc: kotlin/String): kotlin/Unit
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
public abstract interface Intf {
|
|
|
|
public abstract void foo(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String abc);
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public abstract java.lang.String bar(int bcd);
|
|
|
|
/**
|
|
* synthetic class
|
|
*/
|
|
@kotlin.Metadata()
|
|
public static final class DefaultImpls {
|
|
|
|
public DefaultImpls() {
|
|
super();
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static java.lang.String bar(@org.jetbrains.annotations.NotNull()
|
|
Intf $this, int bcd) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|