Index: pkg/fixnum/int64.dart |
diff --git a/pkg/fixnum/int64.dart b/pkg/fixnum/int64.dart |
index c617413c4e7d212b361989ead9e1d990f49cd6c8..6dd23cc7835e15736733ce6986dc43a40ff48c5e 100644 |
--- a/pkg/fixnum/int64.dart |
+++ b/pkg/fixnum/int64.dart |
@@ -571,7 +571,7 @@ class int64 implements intx { |
/** |
* Returns a hash code based on all the bits of this [int64]. |
*/ |
- int hashCode() { |
+ int get hashCode { |
int bottom = ((_m & 0x3ff) << _BITS) | _l; |
int top = (_h << 12) | ((_m >> 10) & 0xfff); |
return bottom ^ top; |