Improved kotlin decompiler range indexes
Fixed #KT-30628
This commit is contained in:
@@ -57,10 +57,7 @@ object MapPsiToAsmDesc {
|
||||
append(typeDesc(it.type))
|
||||
}
|
||||
append(")")
|
||||
psiMethod.returnType?.let {
|
||||
append(typeDesc(it))
|
||||
}
|
||||
?: return unknownSignature() // TODO: support constructors, there seems to be additional logic in java that doesn't work correctly for compiled kotlin
|
||||
append(psiMethod.returnType?.let { typeDesc(it) } ?: "V")
|
||||
}
|
||||
|
||||
private fun unknownSignature() = ""
|
||||
|
||||
Reference in New Issue
Block a user