Update message on KotlinReflectionInternalError to reflect that typealiases are also unsupported

This commit is contained in:
Will Boyd
2020-01-31 09:50:50 -05:00
committed by Alexander Udalov
parent 3819b2ce59
commit e27b2990e3
@@ -39,6 +39,6 @@ internal object EmptyContainerForLocal : KDeclarationContainerImpl() {
override fun getLocalProperty(index: Int): PropertyDescriptor? = null
private fun fail(): Nothing = throw KotlinReflectionInternalError(
"Introspecting local functions, lambdas, anonymous functions and local variables is not yet fully supported in Kotlin reflection"
"Introspecting local functions, lambdas, anonymous functions, local variables and typealiases is not yet fully supported in Kotlin reflection"
)
}