diff options
author | Dmitry Jemerov <intelliyole@gmail.com> | 2015-01-14 14:01:20 +0100 |
---|---|---|
committer | Dmitry Jemerov <intelliyole@gmail.com> | 2015-01-14 14:01:20 +0100 |
commit | 60e610ebdd86663bedf113d2235ac3c8364171d0 (patch) | |
tree | 0804f2730bd7da28cfb063f1b00fb4cc1773c4f9 /src/Model/DocumentationNode.kt | |
parent | cd21e1fea43c0b7fa8013e3db7f49fe2b600b7f8 (diff) | |
parent | 0dd5ea3c1492b15bd386ec5c2c8d6e467a8f72a9 (diff) | |
download | dokka-60e610ebdd86663bedf113d2235ac3c8364171d0.tar.gz dokka-60e610ebdd86663bedf113d2235ac3c8364171d0.tar.bz2 dokka-60e610ebdd86663bedf113d2235ac3c8364171d0.zip |
Merge pull request #14 from orangy/override-link
link overriding functions to the corresponding base class functions
Diffstat (limited to 'src/Model/DocumentationNode.kt')
-rw-r--r-- | src/Model/DocumentationNode.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Model/DocumentationNode.kt b/src/Model/DocumentationNode.kt index 635d1db9..6e707cce 100644 --- a/src/Model/DocumentationNode.kt +++ b/src/Model/DocumentationNode.kt @@ -28,6 +28,8 @@ public open class DocumentationNode(val name: String, get() = references(DocumentationReference.Kind.Extension).map { it.to } public val inheritors: List<DocumentationNode> get() = references(DocumentationReference.Kind.Inheritor).map { it.to } + public val overrides: List<DocumentationNode> + get() = references(DocumentationReference.Kind.Override).map { it.to } public val links: List<DocumentationNode> get() = references(DocumentationReference.Kind.Link).map { it.to } public val annotations: List<DocumentationNode> |