Use stubs in reduced js-ir runtime instead of new throwable extensions

To avoid bringing a lot of API required for their full implementation
to reduced runtime.
This commit is contained in:
Ilya Gorbunov
2020-03-19 17:17:40 +03:00
parent 38b1e6beab
commit ec9c7c98cd
2 changed files with 16 additions and 1 deletions
+1
View File
@@ -142,6 +142,7 @@ val reducedRuntimeSources by task<Sync> {
"libraries/stdlib/js/src/kotlin/promise.kt",
"libraries/stdlib/js/src/kotlin/regexp.kt",
"libraries/stdlib/js/src/kotlin/sequence.kt",
"libraries/stdlib/js/src/kotlin/throwableExtensions.kt",
"libraries/stdlib/js/src/kotlin/text/**",
"libraries/stdlib/js/src/kotlin/reflect/KTypeHelpers.kt",
"libraries/stdlib/js/src/kotlin/reflect/KTypeParameterImpl.kt",
@@ -1,5 +1,5 @@
/*
* Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
@@ -19,3 +19,17 @@ public inline fun <T, R> Array<out T>.fold(initial: R, operation: (acc: R, T) ->
for (element in this) accumulator = operation(accumulator, element)
return accumulator
}
public actual fun Throwable.stackTraceToString(): String = toString()
public actual fun Throwable.printStackTrace() {
TODO("Not implemented in reduced runtime")
}
public actual fun Throwable.addSuppressed(exception: Throwable) {
TODO("Not implemented in reduced runtime")
}
public actual val Throwable.suppressedExceptions: List<Throwable>
get() = TODO("Not implemented in reduced runtime")