Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for structurallyEqualsAsData (0.28 sec)

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

     * * the error causes, thus considering all error nodes equal to each other but not to any other node.
     */
    fun DeclarativeDocument.structurallyEqualsAsData(other: DeclarativeDocument): Boolean {
        fun ValueNode.structurallyEquals(other: ValueNode): Boolean = when (this) {
            is LiteralValueNode -> other is LiteralValueNode &&
                value == other.value
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                parsed, new SourceIdentifier("test")
            )
            def expectedDocument = LanguageTreeToDomKt.toDocument(languageTree)
            DataStructuralEqualityKt.structurallyEqualsAsData(doc, expectedDocument)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top