Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(520)

Unified Diff: sdk/lib/core/object.dart

Issue 2563633002: Make the VM's dart:core and dart:async library patches clean. (Closed)
Patch Set: Make moveNextFn private. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698