diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-07-22 18:44:28 +0200 |
---|---|---|
committer | Kamil Doległo <9080183+kamildoleglo@users.noreply.github.com> | 2020-07-23 14:09:39 +0200 |
commit | 316841d9ae01c9240bdd33aa7e2d432f1e9b1aa4 (patch) | |
tree | 36dc3af4b39692752e88d59758e35f247cb1564e /core/src/main/kotlin | |
parent | aca4731ccad3d57aa8b4f6fab250ed3a72e394c4 (diff) | |
download | dokka-316841d9ae01c9240bdd33aa7e2d432f1e9b1aa4.tar.gz dokka-316841d9ae01c9240bdd33aa7e2d432f1e9b1aa4.tar.bz2 dokka-316841d9ae01c9240bdd33aa7e2d432f1e9b1aa4.zip |
Make DParameter extend `WithType`
Diffstat (limited to 'core/src/main/kotlin')
-rw-r--r-- | core/src/main/kotlin/model/Documentable.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/kotlin/model/Documentable.kt b/core/src/main/kotlin/model/Documentable.kt index 2c3e1323..4f9732c0 100644 --- a/core/src/main/kotlin/model/Documentable.kt +++ b/core/src/main/kotlin/model/Documentable.kt @@ -298,10 +298,10 @@ data class DParameter( override val name: String?, override val documentation: SourceSetDependent<DocumentationNode>, override val expectPresentInSet: DokkaSourceSet?, - val type: Bound, + override val type: Bound, override val sourceSets: Set<DokkaSourceSet>, override val extra: PropertyContainer<DParameter> = PropertyContainer.empty() -) : Documentable(), WithExtraProperties<DParameter> { +) : Documentable(), WithExtraProperties<DParameter>, WithType { override val children: List<Nothing> get() = emptyList() |