diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-17 12:32:17 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-17 12:32:17 +0100 |
commit | 2822a3eee07a27495d5af4fc36304d483756d3a6 (patch) | |
tree | 77b1023320f74dcc004b5f2c8b2e210b669aeebd /src/Formats | |
parent | c28923c56bb0c9d5271ceadfafe42e562862acac (diff) | |
download | dokka-2822a3eee07a27495d5af4fc36304d483756d3a6.tar.gz dokka-2822a3eee07a27495d5af4fc36304d483756d3a6.tar.bz2 dokka-2822a3eee07a27495d5af4fc36304d483756d3a6.zip |
updated according to language change: class object -> default object
Diffstat (limited to 'src/Formats')
-rw-r--r-- | src/Formats/StructuredFormatService.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Formats/StructuredFormatService.kt b/src/Formats/StructuredFormatService.kt index 8309d053..10650ab2 100644 --- a/src/Formats/StructuredFormatService.kt +++ b/src/Formats/StructuredFormatService.kt @@ -238,8 +238,8 @@ public abstract class StructuredFormatService(val locationService: LocationServi appendSection(location, "Constructors", node.members(DocumentationNode.Kind.Constructor), node, to) appendSection(location, "Properties", node.members(DocumentationNode.Kind.Property), node, to) appendSection(location, "Functions", node.members(DocumentationNode.Kind.Function), node, to) - appendSection(location, "Class Object Properties", node.members(DocumentationNode.Kind.ClassObjectProperty), node, to) - appendSection(location, "Class Object Functions", node.members(DocumentationNode.Kind.ClassObjectFunction), node, to) + appendSection(location, "Default Object Properties", node.members(DocumentationNode.Kind.DefaultObjectProperty), node, to) + appendSection(location, "Default Object Functions", node.members(DocumentationNode.Kind.DefaultObjectFunction), node, to) appendSection(location, "Accessors", node.members(DocumentationNode.Kind.PropertyAccessor), node, to) appendSection(location, "Enum Values", node.members(DocumentationNode.Kind.EnumItem), node, to) appendSection(location, "Other members", node.members.filter { @@ -254,8 +254,8 @@ public abstract class StructuredFormatService(val locationService: LocationServi DocumentationNode.Kind.Package, DocumentationNode.Kind.Function, DocumentationNode.Kind.PropertyAccessor, - DocumentationNode.Kind.ClassObjectProperty, - DocumentationNode.Kind.ClassObjectFunction, + DocumentationNode.Kind.DefaultObjectProperty, + DocumentationNode.Kind.DefaultObjectFunction, DocumentationNode.Kind.ExternalClass, DocumentationNode.Kind.EnumItem ) |