FIR IDE: add debug info when can not build KtType

This commit is contained in:
Ilya Kirillov
2020-09-14 14:51:21 +03:00
parent a52262bf97
commit 22c2d34b14
@@ -201,7 +201,7 @@ internal class KtSymbolByFirBuilder private constructor(
is ConeClassErrorType -> KtFirErrorType(coneType, typeCheckerContext, token)
is ConeFlexibleType -> KtFirFlexibleType(coneType, typeCheckerContext, token, this)
is ConeIntersectionType -> KtFirIntersectionType(coneType, typeCheckerContext, token, this)
else -> TODO()
else -> TODO(coneType::class.toString())
}
}
}