| Index: tests/compiler/dart2js/mock_libraries.dart
|
| diff --git a/tests/compiler/dart2js/mock_libraries.dart b/tests/compiler/dart2js/mock_libraries.dart
|
| index 95bb3fbe5d2d76fd31cf31c013d20b8ae6e6a80f..957cb561942d9cf0a08ed98bb56f80eac68e3cf9 100644
|
| --- a/tests/compiler/dart2js/mock_libraries.dart
|
| +++ b/tests/compiler/dart2js/mock_libraries.dart
|
| @@ -347,11 +347,11 @@ const Map<String, String> DEFAULT_INTERCEPTORS_LIBRARY = const <String, String>{
|
| operator &(other) => 42;
|
| operator ^(other) => 42;
|
|
|
| - operator >(other) => !identical(this, other);
|
| - operator >=(other) => !identical(this, other);
|
| - operator <(other) => !identical(this, other);
|
| - operator <=(other) => !identical(this, other);
|
| - operator ==(other) => identical(this, other);
|
| + operator >(other) => true;
|
| + operator >=(other) => true;
|
| + operator <(other) => true;
|
| + operator <=(other) => true;
|
| + operator ==(other) => true;
|
| get hashCode => throw "JSNumber.hashCode not implemented.";
|
|
|
| // We force side effects on _tdivFast to mimic the shortcomings of
|
|
|