[JS IR BE] Inline classes lowering

This commit is contained in:
Svyatoslav Kuzmich
2018-10-31 17:39:02 +03:00
parent 4866c2b36a
commit 370b04df35
11 changed files with 798 additions and 11 deletions
+4 -1
View File
@@ -108,4 +108,7 @@ internal fun newThrowable(message: String?, cause: Throwable?): Throwable {
throwable.cause = cause
throwable.name = "Throwable"
return throwable
}
}
internal fun <T, R> boxIntrinsic(x: T): R = error("Should be lowered")
internal fun <T, R> unboxIntrinsic(x: T): R = error("Should be lowered")