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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/collection/linked_list.dart
diff --git a/tool/input_sdk/lib/collection/linked_list.dart b/tool/input_sdk/lib/collection/linked_list.dart
index 2e28a86076858fd72f05cb6cb4b28b623b829210..481f04dde02fd599b8d9ac36d131cb1e360c221b 100644
--- a/tool/input_sdk/lib/collection/linked_list.dart
+++ b/tool/input_sdk/lib/collection/linked_list.dart
@@ -296,6 +296,6 @@ abstract class LinkedListEntry<E extends LinkedListEntry<E>> {
* The [entry] must not be in a linked list.
*/
void insertBefore(E entry) {
- _list._insertBefore(this as E, entry, updateFirst: true);
+ _list._insertBefore(this as dynamic/*=E*/, entry, updateFirst: true);
}
}
« 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