aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/base/src')
-rw-r--r--plugins/base/src/main/kotlin/transformers/documentables/DocumentableReplacerTransformer.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/base/src/main/kotlin/transformers/documentables/DocumentableReplacerTransformer.kt b/plugins/base/src/main/kotlin/transformers/documentables/DocumentableReplacerTransformer.kt
index f5ef8ed1..608357d5 100644
--- a/plugins/base/src/main/kotlin/transformers/documentables/DocumentableReplacerTransformer.kt
+++ b/plugins/base/src/main/kotlin/transformers/documentables/DocumentableReplacerTransformer.kt
@@ -116,7 +116,7 @@ abstract class DocumentableReplacerTransformer(val context: DokkaContext) :
)).let { AnyWithChanges(it, wasChanged) }
}
- protected fun processFunction(dFunction: DFunction): AnyWithChanges<DFunction> {
+ protected open fun processFunction(dFunction: DFunction): AnyWithChanges<DFunction> {
val type = processBound(dFunction.type)
val parameters = dFunction.parameters.map { processParameter(it) }
val receiver = dFunction.receiver?.let { processParameter(it) }
@@ -225,4 +225,4 @@ abstract class DocumentableReplacerTransformer(val context: DokkaContext) :
protected data class AnyWithChanges<out T>(val target: T?, val changed: Boolean = false)
-} \ No newline at end of file
+}