diff options
| author | Andrzej Ratajczak <andrzej.ratajczak98@gmail.com> | 2020-04-15 14:21:53 +0200 |
|---|---|---|
| committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-04-23 13:30:00 +0200 |
| commit | f55620e397aa4db4c208996d1662f610cad58db5 (patch) | |
| tree | dfa6f33348e53e4e29553196386d438ffe604cae /core/src/main/kotlin/pages | |
| parent | df980fe67ba49b959163ae96c54711550368d153 (diff) | |
| download | dokka-f55620e397aa4db4c208996d1662f610cad58db5.tar.gz dokka-f55620e397aa4db4c208996d1662f610cad58db5.tar.bz2 dokka-f55620e397aa4db4c208996d1662f610cad58db5.zip | |
Fix inheritors transformer
Diffstat (limited to 'core/src/main/kotlin/pages')
| -rw-r--r-- | core/src/main/kotlin/pages/ContentNodes.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/kotlin/pages/ContentNodes.kt b/core/src/main/kotlin/pages/ContentNodes.kt index 4e77d663..cfcd4069 100644 --- a/core/src/main/kotlin/pages/ContentNodes.kt +++ b/core/src/main/kotlin/pages/ContentNodes.kt @@ -171,11 +171,11 @@ interface Kind enum class ContentKind : Kind { Comment, Constructors, Functions, Parameters, Properties, Classlikes, Packages, Symbol, Sample, Main, BriefComment, - Empty, Source, TypeAliases, Cover, Subtypes; + Empty, Source, TypeAliases, Cover, Inheritors; companion object { private val platformTagged = - setOf(Constructors, Functions, Properties, Classlikes, Packages, Source, TypeAliases) + setOf(Constructors, Functions, Properties, Classlikes, Packages, Source, TypeAliases, Inheritors) fun shouldBePlatformTagged(kind: Kind): Boolean = kind in platformTagged } |
