Fix rendering of ConeClassErrorType
This commit fixes total kotlin resolve test
This commit is contained in:
@@ -618,6 +618,7 @@ class FirRenderer(builder: StringBuilder) : FirVisitorVoid() {
|
|||||||
private fun ConeKotlinType.asString(): String {
|
private fun ConeKotlinType.asString(): String {
|
||||||
return when (this) {
|
return when (this) {
|
||||||
is ConeKotlinErrorType -> "error: $reason"
|
is ConeKotlinErrorType -> "error: $reason"
|
||||||
|
is ConeClassErrorType -> "class error: $reason"
|
||||||
is ConeClassLikeType -> {
|
is ConeClassLikeType -> {
|
||||||
val sb = StringBuilder()
|
val sb = StringBuilder()
|
||||||
sb.append(symbol.classId.asString())
|
sb.append(symbol.classId.asString())
|
||||||
|
|||||||
Reference in New Issue
Block a user