Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: dart/pkg/intl/lib/date_format.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/pkg/intl/lib/bidi_utils.dart ('k') | dart/pkg/intl/lib/date_symbol_data_file.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 part of intl;
2
3 // 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
4 // 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
5 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
6 4
7 /** 5 /**
8 * DateFormat is for formatting and parsing dates in a locale-sensitive 6 * DateFormat is for formatting and parsing dates in a locale-sensitive
9 * manner. 7 * manner.
10 * It allows the user to choose from a set of standard date time formats as well 8 * It allows the user to choose from a set of standard date time formats as well
11 * as specify a customized pattern under certain locales. Date elements that 9 * as specify a customized pattern under certain locales. Date elements that
12 * vary across locales include month name, week name, field order, etc. 10 * vary across locales include month name, week name, field order, etc.
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 List _reverse(List list) { 559 List _reverse(List list) {
562 // TODO(alanknight): Use standardized list reverse when implemented. 560 // TODO(alanknight): Use standardized list reverse when implemented.
563 // See Issue 2804. 561 // See Issue 2804.
564 var result = new List(); 562 var result = new List();
565 for (var i = list.length-1; i >= 0; i--) { 563 for (var i = list.length-1; i >= 0; i--) {
566 result.addLast(list[i]); 564 result.addLast(list[i]);
567 } 565 }
568 return result; 566 return result;
569 } 567 }
570 } 568 }
OLDNEW
« no previous file with comments | « dart/pkg/intl/lib/bidi_utils.dart ('k') | dart/pkg/intl/lib/date_symbol_data_file.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698