[K/N] Add test for suspend function inheritance in ObjCExport
^KT-49395
This commit is contained in:
@@ -11,6 +11,7 @@ import kotlin.coroutines.intrinsics.*
|
|||||||
import kotlin.native.concurrent.isFrozen
|
import kotlin.native.concurrent.isFrozen
|
||||||
import kotlin.native.internal.ObjCErrorException
|
import kotlin.native.internal.ObjCErrorException
|
||||||
import kotlin.test.*
|
import kotlin.test.*
|
||||||
|
import kotlin.reflect.*
|
||||||
|
|
||||||
class CoroutineException : Throwable()
|
class CoroutineException : Throwable()
|
||||||
|
|
||||||
@@ -185,14 +186,29 @@ class ThrowCancellationExceptionImpl : ThrowCancellationException() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class suspendFunctionChild0: suspend () -> String {
|
||||||
|
override suspend fun invoke(): String = "child 0"
|
||||||
|
}
|
||||||
|
|
||||||
|
class suspendFunctionChild1: suspend (String) -> String {
|
||||||
|
override suspend fun invoke(s: String): String = "$s 1"
|
||||||
|
}
|
||||||
|
|
||||||
fun getSuspendLambda0(): suspend () -> String = { "lambda 0" }
|
fun getSuspendLambda0(): suspend () -> String = { "lambda 0" }
|
||||||
|
|
||||||
private suspend fun suspendCallableReference0Target(): String = "callable reference 0"
|
private suspend fun suspendCallableReference0Target(): String = "callable reference 0"
|
||||||
fun getSuspendCallableReference0(): suspend () -> String = ::suspendCallableReference0Target
|
fun getSuspendCallableReference0(): suspend () -> String = ::suspendCallableReference0Target
|
||||||
|
|
||||||
|
fun getSuspendChild0() = suspendFunctionChild0()
|
||||||
|
|
||||||
fun getSuspendLambda1(): suspend (String) -> String = { "$it 1" }
|
fun getSuspendLambda1(): suspend (String) -> String = { "$it 1" }
|
||||||
|
|
||||||
private suspend fun suspendCallableReference1Target(str: String): String = "$str 1"
|
private suspend fun suspendCallableReference1Target(str: String): String = "$str 1"
|
||||||
fun getSuspendCallableReference1(): suspend (String) -> String = ::suspendCallableReference1Target
|
fun getSuspendCallableReference1(): suspend (String) -> String = ::suspendCallableReference1Target
|
||||||
|
fun getSuspendChild1() = suspendFunctionChild1()
|
||||||
|
|
||||||
|
|
||||||
suspend fun invoke1(block: suspend (Any?) -> Any?, argument: Any?): Any? = block(argument)
|
suspend fun invoke1(block: suspend (Any?) -> Any?, argument: Any?): Any? = block(argument)
|
||||||
|
|
||||||
|
fun getKSuspendCallableReference0(): KSuspendFunction0<String> = ::suspendCallableReference0Target
|
||||||
|
fun getKSuspendCallableReference1(): KSuspendFunction1<String, String> = ::suspendCallableReference1Target
|
||||||
|
|||||||
@@ -441,8 +441,51 @@ private func testSuspendFunctionType1(f: KotlinSuspendFunction1) throws {
|
|||||||
private func testSuspendFunctionType() throws {
|
private func testSuspendFunctionType() throws {
|
||||||
try testSuspendFunctionType0(f: CoroutinesKt.getSuspendLambda0(), expectedResult: "lambda 0")
|
try testSuspendFunctionType0(f: CoroutinesKt.getSuspendLambda0(), expectedResult: "lambda 0")
|
||||||
try testSuspendFunctionType0(f: CoroutinesKt.getSuspendCallableReference0(), expectedResult: "callable reference 0")
|
try testSuspendFunctionType0(f: CoroutinesKt.getSuspendCallableReference0(), expectedResult: "callable reference 0")
|
||||||
|
try testSuspendFunctionType0(f: CoroutinesKt.getSuspendChild0(), expectedResult: "child 0")
|
||||||
try testSuspendFunctionType1(f: CoroutinesKt.getSuspendLambda1())
|
try testSuspendFunctionType1(f: CoroutinesKt.getSuspendLambda1())
|
||||||
try testSuspendFunctionType1(f: CoroutinesKt.getSuspendCallableReference1())
|
try testSuspendFunctionType1(f: CoroutinesKt.getSuspendCallableReference1())
|
||||||
|
try testSuspendFunctionType1(f: CoroutinesKt.getSuspendChild1())
|
||||||
|
}
|
||||||
|
|
||||||
|
private func testKSuspendFunctionType0(f: KotlinKSuspendFunction0, expectedResult: String) throws {
|
||||||
|
try assertTrue((f as AnyObject) is KotlinKSuspendFunction0)
|
||||||
|
|
||||||
|
var result: String? = nil
|
||||||
|
var error: Error? = nil
|
||||||
|
var completionCalled = 0
|
||||||
|
|
||||||
|
f.invoke { _result, _error in
|
||||||
|
completionCalled += 1
|
||||||
|
result = _result as? String
|
||||||
|
error = _error
|
||||||
|
}
|
||||||
|
|
||||||
|
try assertEquals(actual: completionCalled, expected: 1)
|
||||||
|
try assertEquals(actual: result, expected: expectedResult)
|
||||||
|
try assertNil(error)
|
||||||
|
}
|
||||||
|
|
||||||
|
private func testKSuspendFunctionType1(f: KotlinKSuspendFunction1) throws {
|
||||||
|
try assertTrue((f as AnyObject) is KotlinKSuspendFunction1)
|
||||||
|
|
||||||
|
var result: String? = nil
|
||||||
|
var error: Error? = nil
|
||||||
|
var completionCalled = 0
|
||||||
|
|
||||||
|
f.invoke(p1: "suspend function type") { _result, _error in
|
||||||
|
completionCalled += 1
|
||||||
|
result = _result as? String
|
||||||
|
error = _error
|
||||||
|
}
|
||||||
|
|
||||||
|
try assertEquals(actual: completionCalled, expected: 1)
|
||||||
|
try assertEquals(actual: result, expected: "suspend function type 1")
|
||||||
|
try assertNil(error)
|
||||||
|
}
|
||||||
|
|
||||||
|
private func testKSuspendFunctionType() throws {
|
||||||
|
try testKSuspendFunctionType0(f: CoroutinesKt.getKSuspendCallableReference0(), expectedResult: "callable reference 0")
|
||||||
|
try testKSuspendFunctionType1(f: CoroutinesKt.getKSuspendCallableReference1())
|
||||||
}
|
}
|
||||||
|
|
||||||
private func testSuspendFunctionSwiftImpl() throws {
|
private func testSuspendFunctionSwiftImpl() throws {
|
||||||
@@ -480,6 +523,7 @@ class CoroutinesTests : SimpleTestProvider {
|
|||||||
test("TestImplicitThrows1", testImplicitThrows1)
|
test("TestImplicitThrows1", testImplicitThrows1)
|
||||||
test("TestImplicitThrows2", testImplicitThrows2)
|
test("TestImplicitThrows2", testImplicitThrows2)
|
||||||
test("TestSuspendFunctionType", testSuspendFunctionType)
|
test("TestSuspendFunctionType", testSuspendFunctionType)
|
||||||
|
test("TestKSuspendFunctionType", testSuspendFunctionType)
|
||||||
test("TestSuspendFunctionSwiftImpl", testSuspendFunctionSwiftImpl)
|
test("TestSuspendFunctionSwiftImpl", testSuspendFunctionSwiftImpl)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -279,6 +279,32 @@ __attribute__((swift_name("ThrowCancellationExceptionImpl")))
|
|||||||
- (void)throwCancellationExceptionWithCompletionHandler:(void (^)(NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
- (void)throwCancellationExceptionWithCompletionHandler:(void (^)(NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
||||||
@end;
|
@end;
|
||||||
|
|
||||||
|
__attribute__((objc_subclassing_restricted))
|
||||||
|
__attribute__((swift_name("suspendFunctionChild0")))
|
||||||
|
@interface KtsuspendFunctionChild0 : KtBase <KtKotlinSuspendFunction0>
|
||||||
|
- (instancetype)init __attribute__((swift_name("init()"))) __attribute__((objc_designated_initializer));
|
||||||
|
+ (instancetype)new __attribute__((availability(swift, unavailable, message="use object initializers instead")));
|
||||||
|
|
||||||
|
/**
|
||||||
|
@note This method converts instances of CancellationException to errors.
|
||||||
|
Other uncaught Kotlin exceptions are fatal.
|
||||||
|
*/
|
||||||
|
- (void)invokeWithCompletionHandler:(void (^)(NSString * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke(completionHandler:)")));
|
||||||
|
@end;
|
||||||
|
|
||||||
|
__attribute__((objc_subclassing_restricted))
|
||||||
|
__attribute__((swift_name("suspendFunctionChild1")))
|
||||||
|
@interface KtsuspendFunctionChild1 : KtBase <KtKotlinSuspendFunction1>
|
||||||
|
- (instancetype)init __attribute__((swift_name("init()"))) __attribute__((objc_designated_initializer));
|
||||||
|
+ (instancetype)new __attribute__((availability(swift, unavailable, message="use object initializers instead")));
|
||||||
|
|
||||||
|
/**
|
||||||
|
@note This method converts instances of CancellationException to errors.
|
||||||
|
Other uncaught Kotlin exceptions are fatal.
|
||||||
|
*/
|
||||||
|
- (void)invokeP1:(NSString *)s completionHandler:(void (^)(NSString * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke(p1:completionHandler:)")));
|
||||||
|
@end;
|
||||||
|
|
||||||
__attribute__((objc_subclassing_restricted))
|
__attribute__((objc_subclassing_restricted))
|
||||||
__attribute__((swift_name("CoroutinesKt")))
|
__attribute__((swift_name("CoroutinesKt")))
|
||||||
@interface KtCoroutinesKt : KtBase
|
@interface KtCoroutinesKt : KtBase
|
||||||
@@ -338,14 +364,18 @@ __attribute__((swift_name("CoroutinesKt")))
|
|||||||
+ (void)throwCancellationExceptionWithCompletionHandler:(void (^)(NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
+ (void)throwCancellationExceptionWithCompletionHandler:(void (^)(NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
||||||
+ (id<KtKotlinSuspendFunction0>)getSuspendLambda0 __attribute__((swift_name("getSuspendLambda0()")));
|
+ (id<KtKotlinSuspendFunction0>)getSuspendLambda0 __attribute__((swift_name("getSuspendLambda0()")));
|
||||||
+ (id<KtKotlinSuspendFunction0>)getSuspendCallableReference0 __attribute__((swift_name("getSuspendCallableReference0()")));
|
+ (id<KtKotlinSuspendFunction0>)getSuspendCallableReference0 __attribute__((swift_name("getSuspendCallableReference0()")));
|
||||||
|
+ (KtsuspendFunctionChild0 *)getSuspendChild0 __attribute__((swift_name("getSuspendChild0()")));
|
||||||
+ (id<KtKotlinSuspendFunction1>)getSuspendLambda1 __attribute__((swift_name("getSuspendLambda1()")));
|
+ (id<KtKotlinSuspendFunction1>)getSuspendLambda1 __attribute__((swift_name("getSuspendLambda1()")));
|
||||||
+ (id<KtKotlinSuspendFunction1>)getSuspendCallableReference1 __attribute__((swift_name("getSuspendCallableReference1()")));
|
+ (id<KtKotlinSuspendFunction1>)getSuspendCallableReference1 __attribute__((swift_name("getSuspendCallableReference1()")));
|
||||||
|
+ (KtsuspendFunctionChild1 *)getSuspendChild1 __attribute__((swift_name("getSuspendChild1()")));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@note This method converts instances of CancellationException to errors.
|
@note This method converts instances of CancellationException to errors.
|
||||||
Other uncaught Kotlin exceptions are fatal.
|
Other uncaught Kotlin exceptions are fatal.
|
||||||
*/
|
*/
|
||||||
+ (void)invoke1Block:(id<KtKotlinSuspendFunction1>)block argument:(id _Nullable)argument completionHandler:(void (^)(id _Nullable_result, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke1(block:argument:completionHandler:)")));
|
+ (void)invoke1Block:(id<KtKotlinSuspendFunction1>)block argument:(id _Nullable)argument completionHandler:(void (^)(id _Nullable_result, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke1(block:argument:completionHandler:)")));
|
||||||
|
+ (id<KtKotlinKSuspendFunction0>)getKSuspendCallableReference0 __attribute__((swift_name("getKSuspendCallableReference0()")));
|
||||||
|
+ (id<KtKotlinKSuspendFunction1>)getKSuspendCallableReference1 __attribute__((swift_name("getKSuspendCallableReference1()")));
|
||||||
@end;
|
@end;
|
||||||
|
|
||||||
__attribute__((swift_name("DeallocRetainBase")))
|
__attribute__((swift_name("DeallocRetainBase")))
|
||||||
|
|||||||
@@ -279,6 +279,32 @@ __attribute__((swift_name("ThrowCancellationExceptionImpl")))
|
|||||||
- (void)throwCancellationExceptionWithCompletionHandler:(void (^)(KtKotlinUnit * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
- (void)throwCancellationExceptionWithCompletionHandler:(void (^)(KtKotlinUnit * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
||||||
@end;
|
@end;
|
||||||
|
|
||||||
|
__attribute__((objc_subclassing_restricted))
|
||||||
|
__attribute__((swift_name("suspendFunctionChild0")))
|
||||||
|
@interface KtsuspendFunctionChild0 : KtBase <KtKotlinSuspendFunction0>
|
||||||
|
- (instancetype)init __attribute__((swift_name("init()"))) __attribute__((objc_designated_initializer));
|
||||||
|
+ (instancetype)new __attribute__((availability(swift, unavailable, message="use object initializers instead")));
|
||||||
|
|
||||||
|
/**
|
||||||
|
@note This method converts instances of CancellationException to errors.
|
||||||
|
Other uncaught Kotlin exceptions are fatal.
|
||||||
|
*/
|
||||||
|
- (void)invokeWithCompletionHandler:(void (^)(NSString * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke(completionHandler:)")));
|
||||||
|
@end;
|
||||||
|
|
||||||
|
__attribute__((objc_subclassing_restricted))
|
||||||
|
__attribute__((swift_name("suspendFunctionChild1")))
|
||||||
|
@interface KtsuspendFunctionChild1 : KtBase <KtKotlinSuspendFunction1>
|
||||||
|
- (instancetype)init __attribute__((swift_name("init()"))) __attribute__((objc_designated_initializer));
|
||||||
|
+ (instancetype)new __attribute__((availability(swift, unavailable, message="use object initializers instead")));
|
||||||
|
|
||||||
|
/**
|
||||||
|
@note This method converts instances of CancellationException to errors.
|
||||||
|
Other uncaught Kotlin exceptions are fatal.
|
||||||
|
*/
|
||||||
|
- (void)invokeP1:(NSString *)s completionHandler:(void (^)(NSString * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke(p1:completionHandler:)")));
|
||||||
|
@end;
|
||||||
|
|
||||||
__attribute__((objc_subclassing_restricted))
|
__attribute__((objc_subclassing_restricted))
|
||||||
__attribute__((swift_name("CoroutinesKt")))
|
__attribute__((swift_name("CoroutinesKt")))
|
||||||
@interface KtCoroutinesKt : KtBase
|
@interface KtCoroutinesKt : KtBase
|
||||||
@@ -338,14 +364,18 @@ __attribute__((swift_name("CoroutinesKt")))
|
|||||||
+ (void)throwCancellationExceptionWithCompletionHandler:(void (^)(KtKotlinUnit * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
+ (void)throwCancellationExceptionWithCompletionHandler:(void (^)(KtKotlinUnit * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
||||||
+ (id<KtKotlinSuspendFunction0>)getSuspendLambda0 __attribute__((swift_name("getSuspendLambda0()")));
|
+ (id<KtKotlinSuspendFunction0>)getSuspendLambda0 __attribute__((swift_name("getSuspendLambda0()")));
|
||||||
+ (id<KtKotlinSuspendFunction0>)getSuspendCallableReference0 __attribute__((swift_name("getSuspendCallableReference0()")));
|
+ (id<KtKotlinSuspendFunction0>)getSuspendCallableReference0 __attribute__((swift_name("getSuspendCallableReference0()")));
|
||||||
|
+ (KtsuspendFunctionChild0 *)getSuspendChild0 __attribute__((swift_name("getSuspendChild0()")));
|
||||||
+ (id<KtKotlinSuspendFunction1>)getSuspendLambda1 __attribute__((swift_name("getSuspendLambda1()")));
|
+ (id<KtKotlinSuspendFunction1>)getSuspendLambda1 __attribute__((swift_name("getSuspendLambda1()")));
|
||||||
+ (id<KtKotlinSuspendFunction1>)getSuspendCallableReference1 __attribute__((swift_name("getSuspendCallableReference1()")));
|
+ (id<KtKotlinSuspendFunction1>)getSuspendCallableReference1 __attribute__((swift_name("getSuspendCallableReference1()")));
|
||||||
|
+ (KtsuspendFunctionChild1 *)getSuspendChild1 __attribute__((swift_name("getSuspendChild1()")));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@note This method converts instances of CancellationException to errors.
|
@note This method converts instances of CancellationException to errors.
|
||||||
Other uncaught Kotlin exceptions are fatal.
|
Other uncaught Kotlin exceptions are fatal.
|
||||||
*/
|
*/
|
||||||
+ (void)invoke1Block:(id<KtKotlinSuspendFunction1>)block argument:(id _Nullable)argument completionHandler:(void (^)(id _Nullable_result, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke1(block:argument:completionHandler:)")));
|
+ (void)invoke1Block:(id<KtKotlinSuspendFunction1>)block argument:(id _Nullable)argument completionHandler:(void (^)(id _Nullable_result, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke1(block:argument:completionHandler:)")));
|
||||||
|
+ (id<KtKotlinKSuspendFunction0>)getKSuspendCallableReference0 __attribute__((swift_name("getKSuspendCallableReference0()")));
|
||||||
|
+ (id<KtKotlinKSuspendFunction1>)getKSuspendCallableReference1 __attribute__((swift_name("getKSuspendCallableReference1()")));
|
||||||
@end;
|
@end;
|
||||||
|
|
||||||
__attribute__((swift_name("DeallocRetainBase")))
|
__attribute__((swift_name("DeallocRetainBase")))
|
||||||
|
|||||||
@@ -279,6 +279,32 @@ __attribute__((swift_name("ThrowCancellationExceptionImpl")))
|
|||||||
- (void)throwCancellationExceptionWithCompletionHandler:(void (^)(NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
- (void)throwCancellationExceptionWithCompletionHandler:(void (^)(NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
||||||
@end;
|
@end;
|
||||||
|
|
||||||
|
__attribute__((objc_subclassing_restricted))
|
||||||
|
__attribute__((swift_name("suspendFunctionChild0")))
|
||||||
|
@interface KtsuspendFunctionChild0 : KtBase <KtKotlinSuspendFunction0>
|
||||||
|
- (instancetype)init __attribute__((swift_name("init()"))) __attribute__((objc_designated_initializer));
|
||||||
|
+ (instancetype)new __attribute__((availability(swift, unavailable, message="use object initializers instead")));
|
||||||
|
|
||||||
|
/**
|
||||||
|
@note This method converts instances of CancellationException to errors.
|
||||||
|
Other uncaught Kotlin exceptions are fatal.
|
||||||
|
*/
|
||||||
|
- (void)invokeWithCompletionHandler:(void (^)(NSString * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke(completionHandler:)")));
|
||||||
|
@end;
|
||||||
|
|
||||||
|
__attribute__((objc_subclassing_restricted))
|
||||||
|
__attribute__((swift_name("suspendFunctionChild1")))
|
||||||
|
@interface KtsuspendFunctionChild1 : KtBase <KtKotlinSuspendFunction1>
|
||||||
|
- (instancetype)init __attribute__((swift_name("init()"))) __attribute__((objc_designated_initializer));
|
||||||
|
+ (instancetype)new __attribute__((availability(swift, unavailable, message="use object initializers instead")));
|
||||||
|
|
||||||
|
/**
|
||||||
|
@note This method converts instances of CancellationException to errors.
|
||||||
|
Other uncaught Kotlin exceptions are fatal.
|
||||||
|
*/
|
||||||
|
- (void)invokeP1:(NSString *)s completionHandler:(void (^)(NSString * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke(p1:completionHandler:)")));
|
||||||
|
@end;
|
||||||
|
|
||||||
__attribute__((objc_subclassing_restricted))
|
__attribute__((objc_subclassing_restricted))
|
||||||
__attribute__((swift_name("CoroutinesKt")))
|
__attribute__((swift_name("CoroutinesKt")))
|
||||||
@interface KtCoroutinesKt : KtBase
|
@interface KtCoroutinesKt : KtBase
|
||||||
@@ -338,14 +364,18 @@ __attribute__((swift_name("CoroutinesKt")))
|
|||||||
+ (void)throwCancellationExceptionWithCompletionHandler:(void (^)(NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
+ (void)throwCancellationExceptionWithCompletionHandler:(void (^)(NSError * _Nullable))completionHandler __attribute__((swift_name("throwCancellationException(completionHandler:)")));
|
||||||
+ (id<KtKotlinSuspendFunction0>)getSuspendLambda0 __attribute__((swift_name("getSuspendLambda0()")));
|
+ (id<KtKotlinSuspendFunction0>)getSuspendLambda0 __attribute__((swift_name("getSuspendLambda0()")));
|
||||||
+ (id<KtKotlinSuspendFunction0>)getSuspendCallableReference0 __attribute__((swift_name("getSuspendCallableReference0()")));
|
+ (id<KtKotlinSuspendFunction0>)getSuspendCallableReference0 __attribute__((swift_name("getSuspendCallableReference0()")));
|
||||||
|
+ (KtsuspendFunctionChild0 *)getSuspendChild0 __attribute__((swift_name("getSuspendChild0()")));
|
||||||
+ (id<KtKotlinSuspendFunction1>)getSuspendLambda1 __attribute__((swift_name("getSuspendLambda1()")));
|
+ (id<KtKotlinSuspendFunction1>)getSuspendLambda1 __attribute__((swift_name("getSuspendLambda1()")));
|
||||||
+ (id<KtKotlinSuspendFunction1>)getSuspendCallableReference1 __attribute__((swift_name("getSuspendCallableReference1()")));
|
+ (id<KtKotlinSuspendFunction1>)getSuspendCallableReference1 __attribute__((swift_name("getSuspendCallableReference1()")));
|
||||||
|
+ (KtsuspendFunctionChild1 *)getSuspendChild1 __attribute__((swift_name("getSuspendChild1()")));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@note This method converts instances of CancellationException to errors.
|
@note This method converts instances of CancellationException to errors.
|
||||||
Other uncaught Kotlin exceptions are fatal.
|
Other uncaught Kotlin exceptions are fatal.
|
||||||
*/
|
*/
|
||||||
+ (void)invoke1Block:(id<KtKotlinSuspendFunction1>)block argument:(id _Nullable)argument completionHandler:(void (^)(id _Nullable_result, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke1(block:argument:completionHandler:)")));
|
+ (void)invoke1Block:(id<KtKotlinSuspendFunction1>)block argument:(id _Nullable)argument completionHandler:(void (^)(id _Nullable_result, NSError * _Nullable))completionHandler __attribute__((swift_name("invoke1(block:argument:completionHandler:)")));
|
||||||
|
+ (id<KtKotlinKSuspendFunction0>)getKSuspendCallableReference0 __attribute__((swift_name("getKSuspendCallableReference0()")));
|
||||||
|
+ (id<KtKotlinKSuspendFunction1>)getKSuspendCallableReference1 __attribute__((swift_name("getKSuspendCallableReference1()")));
|
||||||
@end;
|
@end;
|
||||||
|
|
||||||
__attribute__((swift_name("DeallocRetainBase")))
|
__attribute__((swift_name("DeallocRetainBase")))
|
||||||
|
|||||||
Reference in New Issue
Block a user