[JS IR BE] Bridges construction

This commit is contained in:
Svyatoslav Kuzmich
2018-06-28 17:30:48 +03:00
parent a2f89cc711
commit 77ad97a39e
41 changed files with 217 additions and 46 deletions
@@ -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() {