Chromium Code Reviews| Index: pkg/fixnum/intx.dart | 
| diff --git a/pkg/fixnum/intx.dart b/pkg/fixnum/intx.dart | 
| index 1fe14931d66e7a0316f9fd81d83d4072589082d0..a18d84914b5a83669164337078036d186b33ea06 100644 | 
| --- a/pkg/fixnum/intx.dart | 
| +++ b/pkg/fixnum/intx.dart | 
| @@ -39,12 +39,12 @@ abstract class intx implements Comparable { | 
| bool operator >=(other); | 
| // Testers. | 
| - bool isEven(); | 
| - bool isMaxValue(); | 
| - bool isMinValue(); | 
| - bool isNegative(); | 
| - bool isOdd(); | 
| - bool isZero(); | 
| + bool get isEven; | 
| + bool get isMaxValue; | 
| + bool get isMinValue; | 
| + bool get isNegative; | 
| + bool get isOdd; | 
| + bool get isZero; | 
| int get hashCode; |