| Index: runtime/lib/double.dart
|
| diff --git a/runtime/lib/double.dart b/runtime/lib/double.dart
|
| index b08dcbc5a7a9a484f66af656255d4302e275fd60..6480f5d7a47b9d78ea1339c815c182cdc87f1fe8 100644
|
| --- a/runtime/lib/double.dart
|
| +++ b/runtime/lib/double.dart
|
| @@ -211,7 +211,7 @@ class _Double implements double {
|
| native "Double_toStringAsPrecision";
|
|
|
| // Order is: NaN > Infinity > ... > 0.0 > -0.0 > ... > -Infinity.
|
| - int compareTo(Comparable other) {
|
| + int compareTo(num other) {
|
| final int EQUAL = 0, LESS = -1, GREATER = 1;
|
| if (this < other) {
|
| return LESS;
|
|
|