diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2015-10-22 19:18:07 +0300 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2015-10-22 19:18:07 +0300 |
commit | a76e5a6f50302382fa53608ff79de3dd1926d84c (patch) | |
tree | 2f21c587bf6938c72db92d019c984602f1ba795e /src/Model/DocumentationNode.kt | |
parent | 1e2e2b6a4223c7e09bf447f645b0843128fed7b5 (diff) | |
download | dokka-a76e5a6f50302382fa53608ff79de3dd1926d84c.tar.gz dokka-a76e5a6f50302382fa53608ff79de3dd1926d84c.tar.bz2 dokka-a76e5a6f50302382fa53608ff79de3dd1926d84c.zip |
Update to changes in Kotlin Beta.
Diffstat (limited to 'src/Model/DocumentationNode.kt')
-rw-r--r-- | src/Model/DocumentationNode.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Model/DocumentationNode.kt b/src/Model/DocumentationNode.kt index 2f0638bc..04285594 100644 --- a/src/Model/DocumentationNode.kt +++ b/src/Model/DocumentationNode.kt @@ -138,6 +138,7 @@ fun DocumentationNode.append(child: DocumentationNode, kind: DocumentationRefere DocumentationReference.Kind.Detail -> child.addReferenceTo(this, DocumentationReference.Kind.Owner) DocumentationReference.Kind.Member -> child.addReferenceTo(this, DocumentationReference.Kind.Owner) DocumentationReference.Kind.Owner -> child.addReferenceTo(this, DocumentationReference.Kind.Member) + else -> { /* Do not add any links back for other types */ } } } |