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

Side by Side Diff: pkg/analyzer/lib/src/generated/utilities_collection.dart

Issue 45573002: Rename analyzer_experimental to analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks before publishing. Created 7 years, 1 month 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
OLDNEW
1 // This code was auto-generated, is not intended to be edited, and is subject to 1 // This code was auto-generated, is not intended to be edited, and is subject to
2 // significant change. Please see the README file for more information. 2 // significant change. Please see the README file for more information.
3 library engine.utilities.collection; 3 library engine.utilities.collection;
4 import 'java_core.dart'; 4 import 'java_core.dart';
5 import 'scanner.dart' show Token; 5 import 'scanner.dart' show Token;
6 /** 6 /**
7 * The class `BooleanArray` defines methods for operating on integers as if they were arrays 7 * The class `BooleanArray` defines methods for operating on integers as if they were arrays
8 * of booleans. These arrays can be indexed by either integers or by enumeration constants. 8 * of booleans. These arrays can be indexed by either integers or by enumeration constants.
9 */ 9 */
10 class BooleanArray { 10 class BooleanArray {
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 * 115 *
116 * @param list the list to which the elements are to be added 116 * @param list the list to which the elements are to be added
117 * @param elements the elements to be added to the list 117 * @param elements the elements to be added to the list
118 */ 118 */
119 static void addAll(List list, List<Object> elements) { 119 static void addAll(List list, List<Object> elements) {
120 for (Object element in elements) { 120 for (Object element in elements) {
121 list.add(element); 121 list.add(element);
122 } 122 }
123 } 123 }
124 } 124 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/source_io.dart ('k') | pkg/analyzer/lib/src/generated/utilities_dart.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698