Chromium Code Reviews| Index: pkg/fixnum/int32.dart |
| diff --git a/pkg/fixnum/int32.dart b/pkg/fixnum/int32.dart |
| index 7cbdcdc1f4e6cb3f71e0da40c20dc730372515d8..d9d8718342f1b9140269306f1f2f738c43a419a2 100644 |
| --- a/pkg/fixnum/int32.dart |
| +++ b/pkg/fixnum/int32.dart |
| @@ -178,7 +178,7 @@ class int32 implements intx { |
| return new int32.fromInt(_i - _convert(other)); |
| } |
| - int32 operator negate() => new int32.fromInt(-_i); |
| + int32 operator -() => new int32.fromInt(-_i); |
| intx operator *(other) { |
| if (other is int64) { |