KNVE: support in JVM_IR and JS_IR

This commit is contained in:
Dmitry Petrov
2020-04-20 14:45:18 +03:00
parent b06780988d
commit 05cb0e8994
12 changed files with 150 additions and 14 deletions
+4
View File
@@ -9,6 +9,10 @@ package kotlin
internal fun throwUninitializedPropertyAccessException(name: String): Nothing =
throw UninitializedPropertyAccessException("lateinit property $name has not been initialized")
@PublishedApi
internal fun throwKotlinNothingValueException(): Nothing =
throw KotlinNothingValueException()
internal fun noWhenBranchMatchedException(): Nothing = throw NoWhenBranchMatchedException()