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

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

Issue 136143002: Add copyright header to generated analyzer files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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
OLDNEW
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
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 }
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