| Index: runtime/lib/date_patch.dart
|
| ===================================================================
|
| --- runtime/lib/date_patch.dart (revision 11416)
|
| +++ runtime/lib/date_patch.dart (working copy)
|
| @@ -82,7 +82,7 @@
|
|
|
| /** The first list contains the days until each month in non-leap years. The
|
| * second list contains the days in leap years. */
|
| - static final List<List<int>> _DAYS_UNTIL_MONTH =
|
| + static const List<List<int>> _DAYS_UNTIL_MONTH =
|
| const [const [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334],
|
| const [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335]];
|
|
|
|
|