[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(
typeArguments: Array<out ConeTypeProjection>,
isNullable: Boolean,
typeArguments: Array<out ConeTypeProjection> = ConeTypeProjection.EMPTY_ARRAY,
isNullable: Boolean = false,
attributes: ConeAttributes = ConeAttributes.Empty
): ConeClassLikeType {
return ConeClassLikeTypeImpl(this.toLookupTag(), typeArguments, isNullable, attributes)