[FIR] Add default parameter values to ClassId.constructClassLikeType
#KT-59855
This commit is contained in:
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)
|
||||||
|
|||||||
Reference in New Issue
Block a user