[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(
|
||||
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)
|
||||
|
||||
Reference in New Issue
Block a user