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

Unified Diff: tests/language/factory3_test.dart

Issue 14022007: Move Iterable implementation to collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Merge to head. Created 7 years, 8 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 | « tests/language/factory2_test.dart ('k') | utils/apidoc/mdn/extract.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/factory3_test.dart
diff --git a/tests/language/factory3_test.dart b/tests/language/factory3_test.dart
index 403633b777fca807fddc85ca48eaf9f3379294ef..c6c61ab4aff6de5e51e72e44bc21b46c35f92b45 100644
--- a/tests/language/factory3_test.dart
+++ b/tests/language/factory3_test.dart
@@ -3,7 +3,9 @@
// BSD-style license that can be found in the LICENSE file.
// VMOptions=--enable_checked_mode
-abstract class Link<T> extends Iterable<T> {
+import "dart:collection";
+
+abstract class Link<T> extends IterableBase<T> {
factory Link(T head, [Link<T> tail]) = LinkEntry<T>;
Link<T> prepend(T element);
}
« no previous file with comments | « tests/language/factory2_test.dart ('k') | utils/apidoc/mdn/extract.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698