@@ -1032,14 +1032,14 @@ private JvmMethodGenericSignature mapSignature(@NotNull FunctionDescriptor f, @N
1032
1032
}
1033
1033
1034
1034
if (f instanceof ConstructorDescriptor ) {
1035
- return mapSignature (f , kind , f .getOriginal ().getValueParameters (), skipGenericSignature );
1035
+ return mapSignatureWithCustomParameters (f , kind , f .getOriginal ().getValueParameters (), skipGenericSignature );
1036
1036
}
1037
1037
1038
- return mapSignature (f , kind , f .getValueParameters (), skipGenericSignature );
1038
+ return mapSignatureWithCustomParameters (f , kind , f .getValueParameters (), skipGenericSignature );
1039
1039
}
1040
1040
1041
1041
@ NotNull
1042
- public JvmMethodGenericSignature mapSignature (
1042
+ public JvmMethodGenericSignature mapSignatureWithCustomParameters (
1043
1043
@ NotNull FunctionDescriptor f ,
1044
1044
@ NotNull OwnerKind kind ,
1045
1045
@ NotNull List <ValueParameterDescriptor > valueParameters ,
@@ -1049,7 +1049,7 @@ public JvmMethodGenericSignature mapSignature(
1049
1049
return mapSignature (((FunctionImportedFromObject ) f ).getCallableFromObject (), kind , skipGenericSignature );
1050
1050
}
1051
1051
else if (f instanceof TypeAliasConstructorDescriptor ) {
1052
- return mapSignature (((TypeAliasConstructorDescriptor ) f ).getUnderlyingConstructorDescriptor (), kind , valueParameters , skipGenericSignature );
1052
+ return mapSignatureWithCustomParameters (((TypeAliasConstructorDescriptor ) f ).getUnderlyingConstructorDescriptor (), kind , valueParameters , skipGenericSignature );
1053
1053
}
1054
1054
1055
1055
checkOwnerCompatibility (f );
0 commit comments