Minor: toString() for CompoundWeight to improve test results readability
This commit is contained in:
@@ -161,7 +161,7 @@ object CallableWeigher : LookupElementWeigher("kotlin.callableWeight") {
|
|||||||
other
|
other
|
||||||
}
|
}
|
||||||
|
|
||||||
private class CompoundWeight(val weight1: Weight1, val receiverIndex: Int, val weight2: Weight2) : Comparable<CompoundWeight> {
|
private data class CompoundWeight(val weight1: Weight1, val receiverIndex: Int, val weight2: Weight2) : Comparable<CompoundWeight> {
|
||||||
override fun compareTo(other: CompoundWeight): Int {
|
override fun compareTo(other: CompoundWeight): Int {
|
||||||
if (weight1 != other.weight1) return weight1.compareTo(other.weight1)
|
if (weight1 != other.weight1) return weight1.compareTo(other.weight1)
|
||||||
if (receiverIndex != other.receiverIndex) return receiverIndex.compareTo(other.receiverIndex)
|
if (receiverIndex != other.receiverIndex) return receiverIndex.compareTo(other.receiverIndex)
|
||||||
|
|||||||
Reference in New Issue
Block a user