diff options
Diffstat (limited to 'core/src/main/kotlin/utilities')
-rw-r--r-- | core/src/main/kotlin/utilities/nodeDebug.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/utilities/nodeDebug.kt b/core/src/main/kotlin/utilities/nodeDebug.kt index 984f13ed..0e8c61f7 100644 --- a/core/src/main/kotlin/utilities/nodeDebug.kt +++ b/core/src/main/kotlin/utilities/nodeDebug.kt @@ -34,7 +34,7 @@ fun Documentable.pretty(prefix: String = "", isLast: Boolean = true): String { //} private fun Any.stringify() = when(this) { is ContentNode -> toString() + this.dci - is PageNode -> this.name + this::class.simpleName + is ContentPage -> this.name + this::class.simpleName else -> toString() } //private fun Any.allChildren() = when(this){ |