Index: lib/compiler/implementation/lib/core_patch.dart |
diff --git a/lib/compiler/implementation/lib/core_patch.dart b/lib/compiler/implementation/lib/core_patch.dart |
index 9641920b0ca5ae0ec2512e87f89cfe247a880ddc..d319a0784d4b1d64fd8bbc5c55c84198d130fbb9 100644 |
--- a/lib/compiler/implementation/lib/core_patch.dart |
+++ b/lib/compiler/implementation/lib/core_patch.dart |
@@ -15,7 +15,7 @@ patch void print(var object) { |
// Patch for Object implementation. |
patch class Object { |
- patch int hashCode() => Primitives.objectHashCode(this); |
+ patch int get hashCode => Primitives.objectHashCode(this); |
patch String toString() => Primitives.objectToString(this); |