| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 #library("date_symbols"); | 4 #library("date_symbols"); |
| 5 | 5 |
| 6 /** | 6 /** |
| 7 * This holds onto information about how a particular locale formats dates. It | 7 * This holds onto information about how a particular locale formats dates. It |
| 8 * contains mostly strings, e.g. what the names of months or weekdays are, | 8 * contains mostly strings, e.g. what the names of months or weekdays are, |
| 9 * but also indicates things like the first day of the week. We expect the data | 9 * but also indicates things like the first day of the week. We expect the data |
| 10 * for instances of these to be generated out of ICU or a similar reference | 10 * for instances of these to be generated out of ICU or a similar reference |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 this.AMPMS, | 44 this.AMPMS, |
| 45 this.DATEFORMATS, | 45 this.DATEFORMATS, |
| 46 this.TIMEFORMATS, | 46 this.TIMEFORMATS, |
| 47 this.AVAILABLEFORMATS, | 47 this.AVAILABLEFORMATS, |
| 48 this.FIRSTDAYOFWEEK, | 48 this.FIRSTDAYOFWEEK, |
| 49 this.WEEKENDRANGE, | 49 this.WEEKENDRANGE, |
| 50 this.FIRSTWEEKCUTOFFDAY]); | 50 this.FIRSTWEEKCUTOFFDAY]); |
| 51 | 51 |
| 52 toString() => NAME; | 52 toString() => NAME; |
| 53 } | 53 } |
| OLD | NEW |