Is there a way to propagate `Deferred` object to s...
# kotlin-native
j
Is there a way to propagate
Deferred
object to swift?
atm I can’t, because, as far a i understand, it contains Kotlin.Error class 😞
Instances of kotlin.Error, kotlin.RuntimeException and subclasses aren't propagated from Kotlin to Objective-C/Swift
s
This error means that instances of
Error
and
RuntimeException
aren’t converted to
NSError
when thrown from Kotlin to Swift. It is not related to exposing
Deferred
to Swift.