diff --git a/core/descriptors.jvm/src/org/jetbrains/kotlin/load/kotlin/methodSignatureMapping.kt b/core/descriptors.jvm/src/org/jetbrains/kotlin/load/kotlin/methodSignatureMapping.kt index 248d61723a0..05771d78740 100644 --- a/core/descriptors.jvm/src/org/jetbrains/kotlin/load/kotlin/methodSignatureMapping.kt +++ b/core/descriptors.jvm/src/org/jetbrains/kotlin/load/kotlin/methodSignatureMapping.kt @@ -25,6 +25,10 @@ fun FunctionDescriptor.computeJvmDescriptor(withReturnType: Boolean = true, with append("(") + extensionReceiverParameter?.let { + appendErasedType(it.type) + } + for (parameter in valueParameters) { appendErasedType(parameter.type) }