in hot-reload-analysis/src/main/kotlin/org/jetbrains/compose/reload/analysis/MutableApplicationInfoImpl.kt [144:155]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other !is ApplicationInfo) return false
if (classIndex != other.classIndex) return false
if (methodIndex != other.methodIndex) return false
if (fieldIndex != other.fieldIndex) return false
if (groupIndex != other.groupIndex) return false
if (superIndex != other.superIndex) return false
if (superIndexInverse != other.superIndexInverse) return false
if (dependencyIndex != other.dependencyIndex) return false
return true
}