Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for visitValue (0.14 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomTestUtil.kt

    object DomTestUtil {
        fun printDomByTraversal(
            document: DeclarativeDocument,
            nodeFormatter: (DocumentNode) -> String,
            valueFormatter: (ValueNode) -> String
        ): String = buildString {
            fun visitValue(valueNode: ValueNode, indent: Int) {
                append(" ".repeat(indent * 4))
                append(valueFormatter(valueNode))
            }
    
            fun visitDocumentNode(documentNode: DocumentNode, indent: Int) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top