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

Unified Diff: tests/html/documentfragment_test.dart

Issue 11412086: Make 'where' lazy. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: FilteredIterable/Iterator -> WhereIterable/Iterator. Created 8 years, 1 month 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
Index: tests/html/documentfragment_test.dart
diff --git a/tests/html/documentfragment_test.dart b/tests/html/documentfragment_test.dart
index 9de3bd13b5f901426b3ac6520a1f1320d3c025f7..dd0850bba80108920dbb74da74dd251079411fea 100644
--- a/tests/html/documentfragment_test.dart
+++ b/tests/html/documentfragment_test.dart
@@ -14,7 +14,7 @@ main() {
var isAnchorElement =
predicate((x) => x is AnchorElement, 'is an AnchorElement');
- Collection<String> _nodeStrings(Collection<Node> input) {
+ List<String> _nodeStrings(Iterable<Node> input) {
var out = new List<String>();
for (Node n in input) {
if (n is Element) {

Powered by Google App Engine
This is Rietveld 408576698