diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-21 15:24:32 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-21 17:19:49 +0300 |
commit | ebcea5c3ad6248c5a02adc5740103a23a5108c58 (patch) | |
tree | 3dc7dbc15917862175846ff11bed103f3a27fe98 /core/src/main/kotlin/Kotlin | |
parent | 80bde3cb243b324df162a16d23f9dfd3e0ab2597 (diff) | |
download | dokka-ebcea5c3ad6248c5a02adc5740103a23a5108c58.tar.gz dokka-ebcea5c3ad6248c5a02adc5740103a23a5108c58.tar.bz2 dokka-ebcea5c3ad6248c5a02adc5740103a23a5108c58.zip |
Fix find node by signature when referencing type parameter
Diffstat (limited to 'core/src/main/kotlin/Kotlin')
-rw-r--r-- | core/src/main/kotlin/Kotlin/DocumentationBuilder.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/main/kotlin/Kotlin/DocumentationBuilder.kt b/core/src/main/kotlin/Kotlin/DocumentationBuilder.kt index 177c6f50..856127d3 100644 --- a/core/src/main/kotlin/Kotlin/DocumentationBuilder.kt +++ b/core/src/main/kotlin/Kotlin/DocumentationBuilder.kt @@ -726,6 +726,7 @@ class DocumentationBuilder } node.appendType(constraint, NodeKind.UpperBound) } + register(this, node) return node } |