From 8f159151f182f4561594a4c23c22e82830bcc9b4 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 6 Mar 2015 16:11:32 +0100 Subject: generate documentation for default object extension properties --- src/Formats/StructuredFormatService.kt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Formats') 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) -- cgit