in intellij/ast/src/main/kotlin/motif/ast/intellij/IntelliJType.kt [60:69]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
other as IntelliJType
if (psiType != other.psiType) return false
return true
}