in hot-reload-devtools-api/src/main/kotlin/org/jetbrains/compose/devtools/api/ReloadCountState.kt [27:33]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other !is ReloadCountState) return false
if (other.successfulReloads != successfulReloads) return false
if (other.failedReloads != failedReloads) return false
return true
}