Rename: ConeTypeVariableType.lookupTag -> typeConstructor
This commit is contained in:
committed by
Space Team
parent
1ceec4d6d7
commit
53ab32e0fb
+1
-1
@@ -10,7 +10,7 @@ import org.jetbrains.kotlin.fir.types.*
|
||||
fun ConeKotlinType.renderForDebugInfo(): String {
|
||||
val nullabilitySuffix = if (this !is ConeErrorType && this !is ConeErrorType) nullability.suffix else ""
|
||||
return when (this) {
|
||||
is ConeTypeVariableType -> "TypeVariable(${this.lookupTag.name})"
|
||||
is ConeTypeVariableType -> "TypeVariable(${this.typeConstructor.name})"
|
||||
is ConeDefinitelyNotNullType -> "${original.renderForDebugInfo()}!!"
|
||||
is ConeErrorType -> "ERROR CLASS: ${diagnostic.reason}"
|
||||
is ConeCapturedType -> "CapturedType(${constructor.projection.renderForDebugInfo()})"
|
||||
|
||||
Reference in New Issue
Block a user