aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/translators/documentables
diff options
context:
space:
mode:
authorFilip Zybała <fzybala@virtuslab.com>2020-03-20 15:27:30 +0100
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-03-26 12:36:03 +0100
commit8a87b5e0bd2eda12f4e44512e3f8856c72e53b3e (patch)
tree75b10c56bd933e2cfdcf0c32492ce9d6b61b1533 /plugins/base/src/main/kotlin/translators/documentables
parent8ef04b5d6bb46a5fbd9cea9b8d08048bc9f03879 (diff)
downloaddokka-8a87b5e0bd2eda12f4e44512e3f8856c72e53b3e.tar.gz
dokka-8a87b5e0bd2eda12f4e44512e3f8856c72e53b3e.tar.bz2
dokka-8a87b5e0bd2eda12f4e44512e3f8856c72e53b3e.zip
Changed modifier to PlatformDependent
Diffstat (limited to 'plugins/base/src/main/kotlin/translators/documentables')
-rw-r--r--plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
index 3f3ebe3a..b9e02398 100644
--- a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
+++ b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
@@ -166,6 +166,7 @@ open class DefaultPageCreator(
protected open fun contentForFunction(f: DFunction) = contentBuilder.contentFor(f) {
header(1) { text(f.name) }
platformDependentHint(f.dri, f.platformData.toSet()){
+ if(f.sources.expect != null) text("actual")
+buildSignature(f)
+contentForComments(f)
}