From a187baa606f1dd6ce63bc38247f4b5331d78f42b Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 10 Feb 2015 19:09:19 +0100 Subject: consider ContentNodeLink nodes to be equal if they point to nodes with the same name (so that links to parameters with the same name in different overloads would still allow grouping) --- src/Model/Content.kt | 4 ++-- test/data/format/overloadsWithDescription.html | 2 +- test/data/format/overloadsWithDescription.kt | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Model/Content.kt b/src/Model/Content.kt index f264d623..7a0f6c2e 100644 --- a/src/Model/Content.kt +++ b/src/Model/Content.kt @@ -40,10 +40,10 @@ public class ContentBlockCode() : ContentBlock() public class ContentNodeLink(val node : DocumentationNode) : ContentBlock() { override fun equals(other: Any?): Boolean = - super.equals(other) && other is ContentNodeLink && node == other.node + super.equals(other) && other is ContentNodeLink && node.name == other.node.name override fun hashCode(): Int = - children.hashCode() * 31 + node.hashCode() + children.hashCode() * 31 + node.name.hashCode() } public class ContentExternalLink(val href : String) : ContentBlock() { diff --git a/test/data/format/overloadsWithDescription.html b/test/data/format/overloadsWithDescription.html index 6b593fcd..37f5cd08 100644 --- a/test/data/format/overloadsWithDescription.html +++ b/test/data/format/overloadsWithDescription.html @@ -6,7 +6,7 @@ test /  / f

f

-
fun f(x: Int): Unit
fun f(x: String): Unit

Performs an action on x.

+
fun f(x: Int): Unit
fun f(x: String): Unit

Performs an action on x.



Description

diff --git a/test/data/format/overloadsWithDescription.kt b/test/data/format/overloadsWithDescription.kt index 13c219a2..740e642f 100644 --- a/test/data/format/overloadsWithDescription.kt +++ b/test/data/format/overloadsWithDescription.kt @@ -1,5 +1,5 @@ /** - * Performs an action on x. + * Performs an action on [x]. * * This is a long description. * @param x the value to perform the action on. @@ -7,7 +7,7 @@ fun f(x: Int) { } /** - * Performs an action on x. + * Performs an action on [x]. * * This is a long description. * @param x the value to perform the action on. -- cgit