[FIR] Add default parameter values to ClassId.constructClassLikeType

#KT-59855
This commit is contained in:
Kirill Rakhman
2023-08-04 10:36:12 +02:00
committed by Space Team
parent e50025f21f
commit 270aa1656f
@@ -38,8 +38,8 @@ fun ClassId.toLookupTag(): ConeClassLikeLookupTagImpl {
} }
fun ClassId.constructClassLikeType( fun ClassId.constructClassLikeType(
typeArguments: Array<out ConeTypeProjection>, typeArguments: Array<out ConeTypeProjection> = ConeTypeProjection.EMPTY_ARRAY,
isNullable: Boolean, isNullable: Boolean = false,
attributes: ConeAttributes = ConeAttributes.Empty attributes: ConeAttributes = ConeAttributes.Empty
): ConeClassLikeType { ): ConeClassLikeType {
return ConeClassLikeTypeImpl(this.toLookupTag(), typeArguments, isNullable, attributes) return ConeClassLikeTypeImpl(this.toLookupTag(), typeArguments, isNullable, attributes)