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