Chromium Code Reviews| Index: pkg/fixnum/int64.dart |
| diff --git a/pkg/fixnum/int64.dart b/pkg/fixnum/int64.dart |
| index 1b344bae23b4dd9ac28d445eaea8433c694d5f79..f54e8df22882be5553027500c93a507e3a6caaab 100644 |
| --- a/pkg/fixnum/int64.dart |
| +++ b/pkg/fixnum/int64.dart |
| @@ -273,7 +273,7 @@ class int64 implements intx { |
| return result; |
| } |
| - int64 operator negate() { |
| + int64 operator -() { |
| // Like 0 - this. |
| int sum0 = -_l; |
| int sum1 = -_m + _shiftRight(sum0, _BITS); |