[FIR] Minor. Add set of type operations to FirOperation

This commit is contained in:
Dmitriy Novozhilov
2019-08-22 15:18:06 +03:00
parent 6b4e95ec52
commit 6e0f4f140f
@@ -43,5 +43,7 @@ enum class FirOperation(val operator: String = "???") {
)
val COMPARISONS: Set<FirOperation> = EnumSet.of(LT, GT, LT_EQ, GT_EQ)
val TYPES: Set<FirOperation> = EnumSet.of(IS, NOT_IS, AS, SAFE_AS)
}
}