c251eb19a6
In this commit, .ir.txt expectation test data files for the JVM IR backend are renamed to .txt. This is done as two separate commits so that Git would recognize that these files were logically moved, not that the contents of the original .txt files were changed. #KT-64680
55 lines
1.8 KiB
Plaintext
Vendored
55 lines
1.8 KiB
Plaintext
Vendored
/**
|
|
* public open class Test : kotlin/Any {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // signature: getTest(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
|
|
* public open suspend fun getTest(text: kotlin/String): kotlin/String
|
|
*
|
|
* // signature: getTestInvalid(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
|
|
* public open suspend fun getTestInvalid(te xt: kotlin/String): kotlin/String
|
|
*
|
|
* // signature: getTestNoSuspend(Ljava/lang/String;)Ljava/lang/String;
|
|
* public open fun getTestNoSuspend(text: kotlin/String): kotlin/String
|
|
*
|
|
* // signature: getTestNoSuspendInvalid(Ljava/lang/String;)Ljava/lang/String;
|
|
* public open fun getTestNoSuspendInvalid(te xt: kotlin/String): kotlin/String
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
public class Test {
|
|
|
|
public Test() {
|
|
super();
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public java.lang.String getTestNoSuspend(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String text) {
|
|
return null;
|
|
}
|
|
|
|
@org.jetbrains.annotations.Nullable()
|
|
public java.lang.Object getTest(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String text, @org.jetbrains.annotations.NotNull()
|
|
kotlin.coroutines.Continuation<? super java.lang.String> $completion) {
|
|
return null;
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public java.lang.String getTestNoSuspendInvalid(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String p0_55085957) {
|
|
return null;
|
|
}
|
|
|
|
@org.jetbrains.annotations.Nullable()
|
|
public java.lang.Object getTestInvalid(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String p0_55085957, @org.jetbrains.annotations.NotNull()
|
|
kotlin.coroutines.Continuation<? super java.lang.String> $completion) {
|
|
return null;
|
|
}
|
|
}
|