diff options
author | Andrzej Ratajczak <andrzej.ratajczak98@gmail.com> | 2020-08-13 14:18:45 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-08-17 11:53:29 +0200 |
commit | 24710663084b0ccd964a2b8a3e0b1dacd63dac43 (patch) | |
tree | 2f09197b8388362e375ddcd6694a6f3e6a2d8116 /core | |
parent | 9a074919f4c0258cf2bf0cb61238a6005844e20b (diff) | |
download | dokka-24710663084b0ccd964a2b8a3e0b1dacd63dac43.tar.gz dokka-24710663084b0ccd964a2b8a3e0b1dacd63dac43.tar.bz2 dokka-24710663084b0ccd964a2b8a3e0b1dacd63dac43.zip |
Add generic typealiases proper parsing and some tests
Diffstat (limited to 'core')
-rw-r--r-- | core/src/main/kotlin/model/Documentable.kt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/src/main/kotlin/model/Documentable.kt b/core/src/main/kotlin/model/Documentable.kt index 33c29ea3..11436fb4 100644 --- a/core/src/main/kotlin/model/Documentable.kt +++ b/core/src/main/kotlin/model/Documentable.kt @@ -333,8 +333,9 @@ data class DTypeAlias( override val documentation: SourceSetDependent<DocumentationNode>, override val expectPresentInSet: DokkaSourceSet?, override val sourceSets: Set<DokkaSourceSet>, - override val extra: PropertyContainer<DTypeAlias> = PropertyContainer.empty() -) : Documentable(), WithType, WithVisibility, WithExtraProperties<DTypeAlias> { + override val extra: PropertyContainer<DTypeAlias> = PropertyContainer.empty(), + override val generics: List<DTypeParameter> +) : Documentable(), WithType, WithVisibility, WithExtraProperties<DTypeAlias>, WithGenerics { override val children: List<Nothing> get() = emptyList() |