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

Unified Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 12094103: Added MappedListIterable/Iterator to implement map() on Lists. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Adding missing EmptyIteartor/Iterable Created 7 years, 11 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 | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tools/dom/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/svg/dartium/svg_dartium.dart
diff --git a/sdk/lib/svg/dartium/svg_dartium.dart b/sdk/lib/svg/dartium/svg_dartium.dart
index 24f1bcddeccd31ee84a76ac30d909a08ba9e2061..83717bdd02ce287d07f8ad3c56d99a49bd8d4d30 100644
--- a/sdk/lib/svg/dartium/svg_dartium.dart
+++ b/sdk/lib/svg/dartium/svg_dartium.dart
@@ -3473,7 +3473,7 @@ class LengthList extends NativeFieldWrapperClass1 implements List<Length> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Length element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Length element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -4174,7 +4174,7 @@ class NumberList extends NativeFieldWrapperClass1 implements List<Number> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Number element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Number element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -5351,7 +5351,7 @@ class PathSegList extends NativeFieldWrapperClass1 implements List<PathSeg> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(PathSeg element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(PathSeg element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -6333,7 +6333,7 @@ class StringList extends NativeFieldWrapperClass1 implements List<String> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(String element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(String element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -7585,7 +7585,7 @@ class TransformList extends NativeFieldWrapperClass1 implements List<Transform>
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Transform element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Transform element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -8156,7 +8156,7 @@ class _ElementInstanceList extends NativeFieldWrapperClass1 implements List<Elem
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(ElementInstance element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(ElementInstance element)) =>
IterableMixinWorkaround.mappedByList(this, f);
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tools/dom/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698