| Index: sdk/lib/core/object.dart
|
| diff --git a/sdk/lib/core/object.dart b/sdk/lib/core/object.dart
|
| index ae0431e0223648943697b0a0a750c3da8deb421b..c7f3fdb12e455e9cf3789960c41d16da271116ec 100644
|
| --- a/sdk/lib/core/object.dart
|
| +++ b/sdk/lib/core/object.dart
|
| @@ -56,7 +56,7 @@ class Object {
|
| * If a subclass overrides the equality operator it should override
|
| * the [hashCode] method as well to maintain consistency.
|
| */
|
| - bool operator ==(other) => identical(this, other);
|
| + external bool operator==(other);
|
|
|
| /**
|
| * Get a hash code for this object.
|
|
|