[FIR] Replace FirExpression.typeRef.coneType (and variants) with FirExpression.coneType
#KT-59855
This commit is contained in:
committed by
Space Team
parent
1472b21993
commit
9ec814b7ad
+2
-2
@@ -175,8 +175,8 @@ object FirSerializationPluginClassChecker : FirClassChecker() {
|
||||
this is FirConstExpression<*> && other is FirConstExpression<*> -> kind == other.kind && value == other.value
|
||||
this is FirGetClassCall && other is FirGetClassCall -> AbstractTypeChecker.equalTypes(
|
||||
session.typeContext,
|
||||
typeRef.coneType,
|
||||
other.typeRef.coneType
|
||||
coneType,
|
||||
other.coneType
|
||||
)
|
||||
|
||||
this is FirPropertyAccessExpression && other is FirPropertyAccessExpression ->
|
||||
|
||||
Reference in New Issue
Block a user