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

Unified Diff: pkg/analysis_server/test/mock_sdk.dart

Issue 756483002: Exchanging operands of a comparision operator should invert the operator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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: pkg/analysis_server/test/mock_sdk.dart
diff --git a/pkg/analysis_server/test/mock_sdk.dart b/pkg/analysis_server/test/mock_sdk.dart
index c539226896240e4ffb004b3495acd1b6e9cbd61c..ffca2a3422bcae323538d1f57c3237d092d4d466 100644
--- a/pkg/analysis_server/test/mock_sdk.dart
+++ b/pkg/analysis_server/test/mock_sdk.dart
@@ -40,6 +40,9 @@ class String implements Comparable<String> {
class bool extends Object {}
abstract class num implements Comparable<num> {
bool operator <(num other);
+ bool operator <=(num other);
+ bool operator >(num other);
+ bool operator >=(num other);
num operator +(num other);
num operator -(num other);
num operator *(num other);

Powered by Google App Engine
This is Rietveld 408576698