[FIR] Make type of special expressions immutable

This commit is contained in:
Kirill Rakhman
2023-08-07 13:08:37 +02:00
committed by Space Team
parent 8d7c5b375e
commit a5cff6ae36
8 changed files with 18 additions and 29 deletions
@@ -122,7 +122,10 @@ abstract class AbstractFirTreeImplementationConfigurator {
}
fun defaultBuiltInType(type: String) {
default("coneTypeOrNull", "StandardClassIds.$type.constructClassLikeType()")
default("coneTypeOrNull") {
value = "StandardClassIds.$type.constructClassLikeType()"
isMutable = false
}
useTypes(standardClassIdsType, constructClassLikeTypeImport)
}