[JS IR BE] lateinit support

* Functions with IrExpressionBody are lowered to IrBlockBody
* Implemented throwUninitializedPropertyAccessException function
This commit is contained in:
Anton Bannykh
2018-09-20 18:09:26 +03:00
parent beaf6df8c5
commit 8e347f9f39
21 changed files with 25 additions and 34 deletions
+5 -1
View File
@@ -98,4 +98,8 @@ fun THROW_NPE() {
throw NullPointerException()
}
fun error(s: String): Nothing = throw IllegalStateException(s, null)
fun error(s: String): Nothing = throw IllegalStateException(s, null)
@PublishedApi
internal fun throwUninitializedPropertyAccessException(name: String): Nothing =
throw UninitializedPropertyAccessException("lateinit property $name has not been initialized")