Chromium Code Reviews| Index: pkg/intl/lib/src/date_format_helpers.dart |
| =================================================================== |
| --- pkg/intl/lib/src/date_format_helpers.dart (revision 14362) |
| +++ pkg/intl/lib/src/date_format_helpers.dart (working copy) |
| @@ -2,6 +2,9 @@ |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| + |
| +part of intl; |
| + |
| /** |
| * A class for holding onto the data for a date so that it can be built |
| * up incrementally. |
| @@ -71,7 +74,7 @@ |
| bool atEnd() => index >= contents.length; |
| - Dynamic next() => contents[index++]; |
|
Emily Fortuna
2012/10/31 20:17:32
will this no longer work now?
Alan Knight
2012/10/31 21:31:59
It would have to be small d dynamic. This is anoth
|
| + Object next() => contents[index++]; |
| /** |
| * Return the next [howMany] items, or as many as there are remaining. |