Fix unreachable branch in ConeKotlinType.render()
This commit is contained in:
@@ -39,8 +39,8 @@ fun ConeKotlinType.render(): String {
|
|||||||
postfix = ")"
|
postfix = ")"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
is ConeStubTypeForChainInference -> "${renderAttributes()}Stub (chain inference): ${constructor.variable}"
|
|
||||||
is ConeStubTypeForSyntheticFixation -> "${renderAttributes()}Stub (fixation): ${constructor.variable}"
|
is ConeStubTypeForSyntheticFixation -> "${renderAttributes()}Stub (fixation): ${constructor.variable}"
|
||||||
|
is ConeStubTypeForChainInference -> "${renderAttributes()}Stub (chain inference): ${constructor.variable}"
|
||||||
is ConeStubType -> "${renderAttributes()}Stub (subtyping): ${constructor.variable}"
|
is ConeStubType -> "${renderAttributes()}Stub (subtyping): ${constructor.variable}"
|
||||||
is ConeIntegerLiteralConstantType -> "${renderAttributes()}ILT: $value"
|
is ConeIntegerLiteralConstantType -> "${renderAttributes()}ILT: $value"
|
||||||
is ConeIntegerConstantOperatorType -> "${renderAttributes()}IOT"
|
is ConeIntegerConstantOperatorType -> "${renderAttributes()}IOT"
|
||||||
|
|||||||
Reference in New Issue
Block a user