| Index: runtime/lib/double.dart
|
| diff --git a/runtime/lib/double.dart b/runtime/lib/double.dart
|
| index 280bf3b4a470ec0d8a898c2c4ce684c4a2eb2e01..ea7c1cf1ac27f9a48614591dfd517abe74a98225 100644
|
| --- a/runtime/lib/double.dart
|
| +++ b/runtime/lib/double.dart
|
| @@ -246,7 +246,7 @@ class _Double extends _Num implements double {
|
|
|
| // Order is: NaN > Infinity > ... > 0.0 > -0.0 > ... > -Infinity.
|
| int compareTo(num other) {
|
| - final int EQUAL = 0, LESS = -1, GREATER = 1;
|
| + const int EQUAL = 0, LESS = -1, GREATER = 1;
|
| if (this < other) {
|
| return LESS;
|
| } else if (this > other) {
|
|
|