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

Side by Side Diff: tool/input_sdk/lib/collection/linked_list.dart

Issue 1977003002: Update dart:collection. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // 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
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of dart.collection; 5 part of dart.collection;
6 6
7 7
8 /** 8 /**
9 * A specialized double-linked list of elements that extends [LinkedListEntry]. 9 * A specialized double-linked list of elements that extends [LinkedListEntry].
10 * 10 *
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 _list._insertBefore(_next, entry, updateFirst: false); 289 _list._insertBefore(_next, entry, updateFirst: false);
290 } 290 }
291 291
292 /** 292 /**
293 * Insert an element before this element in this element's linked list. 293 * Insert an element before this element in this element's linked list.
294 * 294 *
295 * This entry must be in a linked list when this method is called. 295 * This entry must be in a linked list when this method is called.
296 * The [entry] must not be in a linked list. 296 * The [entry] must not be in a linked list.
297 */ 297 */
298 void insertBefore(E entry) { 298 void insertBefore(E entry) {
299 _list._insertBefore(this as E, entry, updateFirst: true); 299 _list._insertBefore(this as dynamic/*=E*/, entry, updateFirst: true);
300 } 300 }
301 } 301 }
OLDNEW
« no previous file with comments | « tool/input_sdk/lib/collection/linked_hash_set.dart ('k') | tool/input_sdk/lib/collection/queue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698