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

Unified Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 12207205: Revert "Remove deprecated mappedBy." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 | « sdk/lib/html/html_common/filtered_element_list.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/svg/dart2js/svg_dart2js.dart
diff --git a/sdk/lib/svg/dart2js/svg_dart2js.dart b/sdk/lib/svg/dart2js/svg_dart2js.dart
index 7543c2a903227ee22ebb966eaef21fb1e617d5fd..df439d6ce977ecef23043166d18f7303e15fd69e 100644
--- a/sdk/lib/svg/dart2js/svg_dart2js.dart
+++ b/sdk/lib/svg/dart2js/svg_dart2js.dart
@@ -3082,6 +3082,9 @@ class LengthList implements JavaScriptIndexingBehavior, List<Length> native "*SV
Iterable map(f(Length element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Length element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Length> where(bool f(Length element)) =>
IterableMixinWorkaround.where(this, f);
@@ -3706,6 +3709,9 @@ class NumberList implements JavaScriptIndexingBehavior, List<Number> native "*SV
Iterable map(f(Number element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Number element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Number> where(bool f(Number element)) =>
IterableMixinWorkaround.where(this, f);
@@ -4606,6 +4612,9 @@ class PathSegList implements JavaScriptIndexingBehavior, List<PathSeg> native "*
Iterable map(f(PathSeg element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(PathSeg element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<PathSeg> where(bool f(PathSeg element)) =>
IterableMixinWorkaround.where(this, f);
@@ -5490,6 +5499,9 @@ class StringList implements JavaScriptIndexingBehavior, List<String> native "*SV
Iterable map(f(String element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(String element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<String> where(bool f(String element)) =>
IterableMixinWorkaround.where(this, f);
@@ -6653,6 +6665,9 @@ class TransformList implements List<Transform>, JavaScriptIndexingBehavior nativ
Iterable map(f(Transform element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(Transform element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<Transform> where(bool f(Transform element)) =>
IterableMixinWorkaround.where(this, f);
@@ -7170,6 +7185,9 @@ class _ElementInstanceList implements JavaScriptIndexingBehavior, List<ElementIn
Iterable map(f(ElementInstance element)) =>
IterableMixinWorkaround.mapList(this, f);
+ List mappedBy(f(ElementInstance element)) =>
+ IterableMixinWorkaround.mappedByList(this, f);
+
Iterable<ElementInstance> where(bool f(ElementInstance element)) =>
IterableMixinWorkaround.where(this, f);
« no previous file with comments | « sdk/lib/html/html_common/filtered_element_list.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698