[JS IR BE] Bridges construction
This commit is contained in:
@@ -49,6 +49,11 @@ open class AssertionError(message: String?, cause: Throwable?) : Exception(messa
|
||||
|
||||
}
|
||||
|
||||
open class UnsupportedOperationException(message: String?, cause: Throwable?) : RuntimeException(message, cause) {
|
||||
constructor() : this(null, null)
|
||||
constructor(message: String?) : this(message, null)
|
||||
constructor(cause: Throwable?) : this(null, cause)
|
||||
}
|
||||
|
||||
// TODO: fix function names to satisfy style convention (depends on built-in names)
|
||||
fun THROW_CCE() {
|
||||
|
||||
Reference in New Issue
Block a user