Interop/Runtime: add support for Kotlin Native

Also add minor improvements, fix bugs and workaround missing features.
This commit is contained in:
Svyatoslav Scherbina
2017-01-31 13:13:30 +07:00
committed by SvyatoslavScherbina
parent 91aab11e01
commit 49815f72e0
10 changed files with 164 additions and 48 deletions
@@ -154,3 +154,12 @@ public class NoWhenBranchMatchedException : RuntimeException {
constructor(s: String) : super(s) {
}
}
public class OutOfMemoryError : Error {
constructor() : super() {
}
constructor(s: String) : super(s) {
}
}