OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |