in compiler/ast/src/main/kotlin/motif/ast/compiler/CompilerAnnotation.kt [55:64]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
other as CompilerAnnotation
if (!mirror.isEquivalent(other.mirror, env)) return false
return true
}