Chromium Code Reviews| Index: pkg/intl/lib/date_symbols.dart |
| =================================================================== |
| --- pkg/intl/lib/date_symbols.dart (revision 13712) |
| +++ pkg/intl/lib/date_symbols.dart (working copy) |
| @@ -24,7 +24,7 @@ |
| List<int> WEEKENDRANGE; |
| int FIRSTWEEKCUTOFFDAY; |
| - DateSymbols([this.NAME, |
| + DateSymbols({this.NAME, |
| this.ERAS, |
|
Lasse Reichstein Nielsen
2012/10/17 14:56:10
Indentation?
It was bad before too, but still.
regis
2012/10/17 19:58:16
Done.
|
| this.ERANAMES, |
| this.NARROWMONTHS, |
| @@ -51,7 +51,7 @@ |
| this.AVAILABLEFORMATS, |
| this.FIRSTDAYOFWEEK, |
| this.WEEKENDRANGE, |
| - this.FIRSTWEEKCUTOFFDAY]); |
| + this.FIRSTWEEKCUTOFFDAY}); |
| // TODO(alanknight): Replace this with use of a more general serialization |
| // facility once one is available. Issue 4926. |