| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 1 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // 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. | 6 // significant change. Please see the README file for more information. |
| 3 | 7 |
| 4 library engine.utilities.collection; | 8 library engine.utilities.collection; |
| 5 | 9 |
| 6 import 'java_core.dart'; | 10 import 'java_core.dart'; |
| 7 import 'scanner.dart' show Token; | 11 import 'scanner.dart' show Token; |
| 8 | 12 |
| 9 /** | 13 /** |
| 10 * The class `BooleanArray` defines methods for operating on integers as if they
were arrays | 14 * The class `BooleanArray` defines methods for operating on integers as if they
were arrays |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 * | 121 * |
| 118 * @param list the list to which the elements are to be added | 122 * @param list the list to which the elements are to be added |
| 119 * @param elements the elements to be added to the list | 123 * @param elements the elements to be added to the list |
| 120 */ | 124 */ |
| 121 static void addAll(List list, List<Object> elements) { | 125 static void addAll(List list, List<Object> elements) { |
| 122 for (Object element in elements) { | 126 for (Object element in elements) { |
| 123 list.add(element); | 127 list.add(element); |
| 124 } | 128 } |
| 125 } | 129 } |
| 126 } | 130 } |
| OLD | NEW |