diff options
Diffstat (limited to 'src/Formats/FormatService.kt')
-rw-r--r-- | src/Formats/FormatService.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Formats/FormatService.kt b/src/Formats/FormatService.kt index f890c34a..9af74590 100644 --- a/src/Formats/FormatService.kt +++ b/src/Formats/FormatService.kt @@ -2,9 +2,9 @@ package org.jetbrains.dokka public trait FormatService { val extension: String - fun appendNodes(to: StringBuilder, nodes: Iterable<DocumentationNode>) - fun appendOutline(to: StringBuilder, nodes: Iterable<DocumentationNode>) + fun appendNodes(location: Location, to: StringBuilder, nodes: Iterable<DocumentationNode>) + fun appendOutline(location: Location, to: StringBuilder, nodes: Iterable<DocumentationNode>) } -fun FormatService.format(nodes: Iterable<DocumentationNode>): String = StringBuilder { appendNodes(this, nodes) }.toString() -fun FormatService.formatOutline(nodes: Iterable<DocumentationNode>): String = StringBuilder { appendOutline(this, nodes) }.toString()
\ No newline at end of file +fun FormatService.format(location: Location, nodes: Iterable<DocumentationNode>): String = StringBuilder { appendNodes(location, this, nodes) }.toString() +fun FormatService.formatOutline(location: Location, nodes: Iterable<DocumentationNode>): String = StringBuilder { appendOutline(location, this, nodes) }.toString()
\ No newline at end of file |