| Index: frog/lib/date_implementation.dart
|
| diff --git a/frog/lib/date_implementation.dart b/frog/lib/date_implementation.dart
|
| index 2fea939f15a772e65c0cfce5b9482cd0a3601aa1..bab2e4572c5bff318f9061154d516d2f1cd59aca 100644
|
| --- a/frog/lib/date_implementation.dart
|
| +++ b/frog/lib/date_implementation.dart
|
| @@ -104,6 +104,14 @@ class DateImplementation implements Date {
|
| return (value == other.value) && (timeZone == other.timeZone);
|
| }
|
|
|
| + bool operator <(Date other) => value < other.value;
|
| +
|
| + bool operator <=(Date other) => value <= other.value;
|
| +
|
| + bool operator >(Date other) => value > other.value;
|
| +
|
| + bool operator >=(Date other) => value >= other.value;
|
| +
|
| int compareTo(Date other) {
|
| return value.compareTo(other.value);
|
| }
|
|
|