Index: runtime/vm/token.h |
diff --git a/runtime/vm/token.h b/runtime/vm/token.h |
index f633894cac2d4aa77a60d5dd31f50c78e7645617..d22a6c0eee8a91f3f0cf66f95bafdb08024eeb21 100644 |
--- a/runtime/vm/token.h |
+++ b/runtime/vm/token.h |
@@ -291,7 +291,10 @@ class Token { |
} |
static bool IsBinaryOperator(Token::Kind token); |
- static bool IsPrefixOperator(Token::Kind token); |
+ static bool IsUnaryOperator(Token::Kind token); |
+ |
+ static bool IsBinaryArithmeticOperator(Token::Kind token); |
+ static bool IsUnaryArithmeticOperator(Token::Kind token); |
// For a comparison operation return an operation for the negated comparison: |
// !(a (op) b) === a (op') b |