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:
@@ -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")
|
||||
Reference in New Issue
Block a user