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

Unified Diff: compiler/javatests/com/google/dart/compiler/type/class_with_operators.dart

Issue 10910279: Issue 5075. Remove support for 'negate' and 'equals' operators (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: compiler/javatests/com/google/dart/compiler/type/class_with_operators.dart
diff --git a/compiler/javatests/com/google/dart/compiler/type/class_with_operators.dart b/compiler/javatests/com/google/dart/compiler/type/class_with_operators.dart
index 80f69a06ebccaeee6296bd103eba0abd6545d7c4..79819b20d8db90ec909de2735cc3763bc3db5bd8 100644
--- a/compiler/javatests/com/google/dart/compiler/type/class_with_operators.dart
+++ b/compiler/javatests/com/google/dart/compiler/type/class_with_operators.dart
@@ -55,7 +55,7 @@ class ClassWithOperators {
return this;
}
- bool operator equals(other) {
+ bool operator ==(other) {
return false;
}
}

Powered by Google App Engine
This is Rietveld 408576698