aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/pages/PageBuilder.kt
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/kotlin/pages/PageBuilder.kt')
-rw-r--r--core/src/main/kotlin/pages/PageBuilder.kt7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/src/main/kotlin/pages/PageBuilder.kt b/core/src/main/kotlin/pages/PageBuilder.kt
index 003cc815..7fe07ae4 100644
--- a/core/src/main/kotlin/pages/PageBuilder.kt
+++ b/core/src/main/kotlin/pages/PageBuilder.kt
@@ -70,6 +70,7 @@ class DefaultPageBuilder(
private fun contentForClass(c: Class) = group(c) {
header(1) { text(c.name) }
+
c.inherited.takeIf { it.isNotEmpty() }?.let {
header(2) { text("SuperInterfaces") }
linkTable(it)
@@ -83,6 +84,12 @@ class DefaultPageBuilder(
comment(it.root)
text("\n")
}
+ contentForComments(c)
+ block("Constructors", 2, ContentKind.Functions, c.constructors, c.platformData) {
+ link(it.name, it.dri)
+ signature(it)
+ text(it.briefDocTagString)
+ }
block("Functions", 2, ContentKind.Functions, c.functions, c.platformData) {
link(it.name, it.dri)