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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/lib/js_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
Index: dart/sdk/lib/_internal/compiler/implementation/lib/js_array.dart
===================================================================
--- dart/sdk/lib/_internal/compiler/implementation/lib/js_array.dart (revision 18634)
+++ dart/sdk/lib/_internal/compiler/implementation/lib/js_array.dart (working copy)
@@ -92,10 +92,6 @@
return IterableMixinWorkaround.mapList(this, f);
}
- List mappedBy(f(E element)) {
- return IterableMixinWorkaround.mappedByList(this, f);
- }
-
String join([String separator]) {
if (separator == null) separator = "";
var list = new List(this.length);
@@ -230,7 +226,7 @@
bool every(bool f(E element)) => IterableMixinWorkaround.every(this, f);
- List<E> get reversed => IterableMixinWorkaround.reversedList(this);
+ Iterable<E> get reversed => IterableMixinWorkaround.reversedList(this);
void sort([int compare(E a, E b)]) {
checkMutable(this, 'sort');

Powered by Google App Engine
This is Rietveld 408576698