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

Unified Diff: lib/compiler/implementation/util/link.dart

Issue 10917290: DartType equals converted to operator == and tested. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 months 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: lib/compiler/implementation/util/link.dart
diff --git a/lib/compiler/implementation/util/link.dart b/lib/compiler/implementation/util/link.dart
index dc9721f0ab08b1a271972cf0100e1ef4c372dfec..cffc7e7a518adbed62c5294f3fe0077e0a990974 100644
--- a/lib/compiler/implementation/util/link.dart
+++ b/lib/compiler/implementation/util/link.dart
@@ -19,7 +19,7 @@ interface Link<T> extends Iterable<T> default LinkFactory<T> {
void forEach(void f(T element));
- bool equals(other);
+ bool operator ==(other);
}
interface EmptyLink<T> extends Link<T> default LinkTail<T> {

Powered by Google App Engine
This is Rietveld 408576698