Minor. Fix tests
This commit is contained in:
committed by
Ilya Gorbunov
parent
e93683621a
commit
b7b5fd75b8
@@ -1,6 +1,9 @@
|
||||
// !LANGUAGE: +ReleaseCoroutines
|
||||
// WITH_COROUTINES
|
||||
// WITH_REFLECT
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS
|
||||
// IGNORE_BACKEND: JVM_IR
|
||||
|
||||
import helpers.*
|
||||
import kotlin.coroutines.*
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
// !LANGUAGE: +ReleaseCoroutines
|
||||
// WITH_COROUTINES
|
||||
// WITH_REFLECT
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS
|
||||
// IGNORE_BACKEND: JVM_IR
|
||||
|
||||
import helpers.*
|
||||
import kotlin.coroutines.*
|
||||
|
||||
@@ -2,6 +2,9 @@
|
||||
// WITH_COROUTINES
|
||||
// WITH_REFLECT
|
||||
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// IGNORE_BACKEND: JS
|
||||
|
||||
import helpers.*
|
||||
import kotlin.coroutines.experimental.*
|
||||
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
|
||||
import kotlin.test.assertTrue
|
||||
import kotlin.test.assertFalse
|
||||
import kotlin.reflect.full.isSuspend
|
||||
|
||||
inline fun inline() {}
|
||||
class External { external fun external() }
|
||||
|
||||
@@ -7,6 +7,8 @@ public final class kotlin/reflect/full/IllegalPropertyDelegateAccessException :
|
||||
}
|
||||
|
||||
public final class kotlin/reflect/full/KCallables {
|
||||
public static final fun callSuspend (Lkotlin/reflect/KCallable;[Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
|
||||
public static final fun callSuspendBy (Lkotlin/reflect/KCallable;Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
|
||||
public static final fun findParameterByName (Lkotlin/reflect/KCallable;Ljava/lang/String;)Lkotlin/reflect/KParameter;
|
||||
public static final fun getExtensionReceiverParameter (Lkotlin/reflect/KCallable;)Lkotlin/reflect/KParameter;
|
||||
public static final fun getInstanceParameter (Lkotlin/reflect/KCallable;)Lkotlin/reflect/KParameter;
|
||||
|
||||
@@ -418,6 +418,7 @@ public abstract class kotlin/jvm/internal/CallableReference : java/io/Serializab
|
||||
public fun isAbstract ()Z
|
||||
public fun isFinal ()Z
|
||||
public fun isOpen ()Z
|
||||
public fun isSuspend ()Z
|
||||
}
|
||||
|
||||
public final class kotlin/jvm/internal/CharCompanionObject {
|
||||
@@ -1165,6 +1166,7 @@ public abstract interface class kotlin/reflect/KCallable : kotlin/reflect/KAnnot
|
||||
public abstract fun isAbstract ()Z
|
||||
public abstract fun isFinal ()Z
|
||||
public abstract fun isOpen ()Z
|
||||
public abstract fun isSuspend ()Z
|
||||
}
|
||||
|
||||
public abstract interface class kotlin/reflect/KClass : kotlin/reflect/KAnnotatedElement, kotlin/reflect/KClassifier, kotlin/reflect/KDeclarationContainer {
|
||||
|
||||
+2
@@ -3119,6 +3119,7 @@ public abstract class kotlin/jvm/internal/CallableReference : java/io/Serializab
|
||||
public fun isAbstract ()Z
|
||||
public fun isFinal ()Z
|
||||
public fun isOpen ()Z
|
||||
public fun isSuspend ()Z
|
||||
}
|
||||
|
||||
public final class kotlin/jvm/internal/CharCompanionObject {
|
||||
@@ -4147,6 +4148,7 @@ public abstract interface class kotlin/reflect/KCallable : kotlin/reflect/KAnnot
|
||||
public abstract fun isAbstract ()Z
|
||||
public abstract fun isFinal ()Z
|
||||
public abstract fun isOpen ()Z
|
||||
public abstract fun isSuspend ()Z
|
||||
}
|
||||
|
||||
public abstract interface class kotlin/reflect/KClass : kotlin/reflect/KAnnotatedElement, kotlin/reflect/KClassifier, kotlin/reflect/KDeclarationContainer {
|
||||
|
||||
Reference in New Issue
Block a user