Index: runtime/vm/token.h |
diff --git a/runtime/vm/token.h b/runtime/vm/token.h |
index 807e12c1c17c863896a2775b3ec06775180b195c..3d2e8218c29bdb22d5dbe18bc03d77291c287c75 100644 |
--- a/runtime/vm/token.h |
+++ b/runtime/vm/token.h |
@@ -289,6 +289,8 @@ class Token { |
static bool IsBinaryArithmeticOperator(Token::Kind token); |
static bool IsUnaryArithmeticOperator(Token::Kind token); |
+ static bool IsBinaryBitwiseOperator(Token::Kind token); |
+ |
// For a comparison operation return an operation for the negated comparison: |
// !(a (op) b) === a (op') b |
static Token::Kind NegateComparison(Token::Kind op) { |