Uast Java, Kotlin: Support all binary operators in Uast

This commit is contained in:
Yan Zhulanow
2016-03-18 16:28:29 +03:00
parent 3f6796f0c2
commit 985c8660b7
3 changed files with 23 additions and 1 deletions
@@ -119,6 +119,6 @@ class UastBinaryOperator(override val text: String): UastOperator {
val SHIFT_RIGHT_ASSIGN = UastBinaryOperator(">>=")
@JvmField
val BITWISE_SHIFT_RIGHT_ASSIGN = UastBinaryOperator(">>>=")
val UNSIGNED_SHIFT_RIGHT_ASSIGN = UastBinaryOperator(">>>=")
}
}