aboutsummaryrefslogtreecommitdiff
path: root/src/Formats
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-03-06 16:11:32 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-03-06 16:11:32 +0100
commit8f159151f182f4561594a4c23c22e82830bcc9b4 (patch)
tree6b351f83ae3808bdcc93c6a9755f9139b184c36b /src/Formats
parent0cab60b604cd7f0f642ab389973bfce1bbbe6071 (diff)
downloaddokka-8f159151f182f4561594a4c23c22e82830bcc9b4.tar.gz
dokka-8f159151f182f4561594a4c23c22e82830bcc9b4.tar.bz2
dokka-8f159151f182f4561594a4c23c22e82830bcc9b4.zip
generate documentation for default object extension properties
Diffstat (limited to 'src/Formats')
-rw-r--r--src/Formats/StructuredFormatService.kt2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Formats/StructuredFormatService.kt b/src/Formats/StructuredFormatService.kt
index 7b9374ec..cc551eb4 100644
--- a/src/Formats/StructuredFormatService.kt
+++ b/src/Formats/StructuredFormatService.kt
@@ -306,6 +306,8 @@ public abstract class StructuredFormatService(locationService: LocationService,
}, node, to)
appendSection(location, "Extension Properties", node.extensions.filter { it.kind == DocumentationNode.Kind.Property }, node, to)
appendSection(location, "Extension Functions", node.extensions.filter { it.kind == DocumentationNode.Kind.Function }, node, to)
+ appendSection(location, "Default Object Extension Properties", node.extensions.filter { it.kind == DocumentationNode.Kind.DefaultObjectProperty }, node, to)
+ appendSection(location, "Default Object Extension Functions", node.extensions.filter { it.kind == DocumentationNode.Kind.DefaultObjectFunction }, node, to)
appendSection(location, "Inheritors",
node.inheritors.filter { it.kind != DocumentationNode.Kind.EnumItem }, node, to)
appendSection(location, "Links", node.links, node, to)