aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/translators/documentables
diff options
context:
space:
mode:
authorMarcin Aman <marcin.aman@gmail.com>2021-07-28 09:14:38 +0200
committerGitHub <noreply@github.com>2021-07-28 09:14:38 +0200
commit2cd95b0828518dde751d039f4456dcf93e04dfc1 (patch)
treebf63fa90f16a53b4af01d29a9494f4e5ad531bd7 /plugins/base/src/main/kotlin/translators/documentables
parent79cf537a1d0d5864e23af754836e48d13a5d722f (diff)
downloaddokka-2cd95b0828518dde751d039f4456dcf93e04dfc1.tar.gz
dokka-2cd95b0828518dde751d039f4456dcf93e04dfc1.tar.bz2
dokka-2cd95b0828518dde751d039f4456dcf93e04dfc1.zip
Missing receiver docs (#2026)
Diffstat (limited to 'plugins/base/src/main/kotlin/translators/documentables')
-rw-r--r--plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt10
1 files changed, 1 insertions, 9 deletions
diff --git a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
index 61fbd7d2..eaa4b6cd 100644
--- a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
+++ b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
@@ -23,7 +23,7 @@ import org.jetbrains.dokka.base.transformers.documentables.ClashingDriIdentifier
private typealias GroupedTags = Map<KClass<out TagWrapper>, List<Pair<DokkaSourceSet?, TagWrapper>>>
private val specialTags: Set<KClass<out TagWrapper>> =
- setOf(Property::class, Description::class, Constructor::class, Receiver::class, Param::class, See::class)
+ setOf(Property::class, Description::class, Constructor::class, Param::class, See::class)
open class DefaultPageCreator(
configuration: DokkaBaseConfiguration?,
@@ -382,18 +382,10 @@ open class DefaultPageCreator(
styles = setOf(ContentStyle.WithExtraAttributes)
) {
sourceSetDependentHint(sourceSets = platforms.toSet(), kind = ContentKind.SourceSetDependentHint) {
- val receiver = tags.withTypeUnnamed<Receiver>()
val params = tags.withTypeNamed<Param>()
table(kind = ContentKind.Parameters) {
platforms.forEach { platform ->
val possibleFallbacks = d.getPossibleFallbackSourcesets(platform)
- (receiver[platform] ?: receiver.fallback(possibleFallbacks))?.let {
- row(sourceSets = setOf(platform), kind = ContentKind.Parameters) {
- text("<receiver>", styles = mainStyles + ContentStyle.RowTitle)
- comment(it.root)
- }
- }
-
params.mapNotNull { (_, param) ->
(param[platform] ?: param.fallback(possibleFallbacks))?.let {
row(sourceSets = setOf(platform), kind = ContentKind.Parameters) {