diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-08-11 12:52:43 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-08-12 09:38:06 +0200 |
commit | bbe5b00387da8fb8a54f8a8ecd80f2f2dea06830 (patch) | |
tree | 193349416ab229be3aafe6b9801c1afe66b8b116 /core/src/main/kotlin/model | |
parent | 6a7d1c9aedfb12f309a410c404a830cb9d3972d3 (diff) | |
download | dokka-bbe5b00387da8fb8a54f8a8ecd80f2f2dea06830.tar.gz dokka-bbe5b00387da8fb8a54f8a8ecd80f2f2dea06830.tar.bz2 dokka-bbe5b00387da8fb8a54f8a8ecd80f2f2dea06830.zip |
Move utility APIs into `PreMergeDocumentationTransformer`
Diffstat (limited to 'core/src/main/kotlin/model')
-rw-r--r-- | core/src/main/kotlin/model/Documentable.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/model/Documentable.kt b/core/src/main/kotlin/model/Documentable.kt index 4f9732c0..3f91e3cb 100644 --- a/core/src/main/kotlin/model/Documentable.kt +++ b/core/src/main/kotlin/model/Documentable.kt @@ -113,7 +113,7 @@ data class DPackage( ) : Documentable(), WithScope, WithExtraProperties<DPackage> { override val name = dri.packageName.orEmpty() override val children: List<Documentable> - get() = (properties + functions + classlikes) + get() = (properties + functions + classlikes + typealiases) override fun withNewExtras(newExtras: PropertyContainer<DPackage>) = copy(extra = newExtras) } |