override fun equals()

in hot-reload-orchestration/src/main/kotlin/org/jetbrains/compose/reload/orchestration/OrchestrationMessage.kt [168:175]


        override fun equals(other: Any?): Boolean {
            if (other === this) return true
            if (!super.equals(other)) return false
            if (other !is RecompileResult) return false
            if (other.recompileRequestId != recompileRequestId) return false
            if (other.exitCode != exitCode) return false
            return true
        }