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

Unified Diff: dart/runtime/lib/growable_array.dart

Issue 12296011: Version 0.3.7.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 10 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 | « dart/runtime/lib/byte_array.dart ('k') | dart/runtime/lib/string_buffer_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/lib/growable_array.dart
===================================================================
--- dart/runtime/lib/growable_array.dart (revision 18634)
+++ dart/runtime/lib/growable_array.dart (working copy)
@@ -246,10 +246,6 @@
return IterableMixinWorkaround.mapList(this, f);
}
- List mappedBy(f(T element)) {
- return IterableMixinWorkaround.mappedByList(this, f);
- }
-
reduce(initialValue, combine(previousValue, T element)) {
return IterableMixinWorkaround.reduce(this, initialValue, combine);
}
@@ -310,7 +306,7 @@
this.length = 0;
}
- List<T> get reversed => new ReversedListView<T>(this, 0, null);
+ Iterable<T> get reversed => new ReversedListIterable<T>(this);
void sort([int compare(T a, T b)]) {
IterableMixinWorkaround.sortList(this, compare);
« no previous file with comments | « dart/runtime/lib/byte_array.dart ('k') | dart/runtime/lib/string_buffer_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698