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

Unified Diff: sdk/lib/html/dartium/html_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: 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:
Download patch
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index c8b126b00482403e29366faf6e34c55b4c5a100e..a65fefff82f5288375e8dc031e6bcb9083bbca32 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -7881,7 +7881,7 @@ class DomMimeTypeArray extends NativeFieldWrapperClass1 implements List<DomMimeT
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(DomMimeType element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(DomMimeType element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -8148,7 +8148,7 @@ class DomPluginArray extends NativeFieldWrapperClass1 implements List<DomPlugin>
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(DomPlugin element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(DomPlugin element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -8534,7 +8534,7 @@ class DomStringList 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);
@@ -8814,7 +8814,7 @@ class _ChildrenElementList implements List {
}
Iterable map(f(Element element)) {
- return IterableMixinWorkaround.map(this, f);
+ return IterableMixinWorkaround.mapList(this, f);
}
List mappedBy(f(Element element)) {
@@ -9031,7 +9031,7 @@ class _FrozenElementList implements List {
}
Iterable map(f(Element element)) {
- return IterableMixinWorkaround.map(this, f);
+ return IterableMixinWorkaround.mapList(this, f);
}
List mappedBy(f(Element element)) {
@@ -11461,7 +11461,7 @@ class FileList extends NativeFieldWrapperClass1 implements List<File> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(File element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(File element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -12122,7 +12122,7 @@ class Float32Array extends ArrayBufferView implements List<num> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(num element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(num element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -12351,7 +12351,7 @@ class Float64Array extends ArrayBufferView implements List<num> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(num element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(num element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -12927,7 +12927,7 @@ class HtmlAllCollection extends NativeFieldWrapperClass1 implements List<Node> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Node element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Node element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -13136,7 +13136,7 @@ class HtmlCollection extends NativeFieldWrapperClass1 implements List<Node> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Node element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Node element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -15258,7 +15258,7 @@ class Int16Array extends ArrayBufferView implements List<int> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(int element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(int element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -15487,7 +15487,7 @@ class Int32Array extends ArrayBufferView implements List<int> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(int element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(int element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -15716,7 +15716,7 @@ class Int8Array extends ArrayBufferView implements List<int> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(int element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(int element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -18304,7 +18304,7 @@ class NamedNodeMap extends NativeFieldWrapperClass1 implements List<Node> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Node element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Node element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -18771,7 +18771,7 @@ class _ChildNodeListLazy implements List {
}
Iterable map(f(Node element)) {
- return IterableMixinWorkaround.map(this, f);
+ return IterableMixinWorkaround.mapList(this, f);
}
List mappedBy(f(Node element)) {
@@ -19160,7 +19160,7 @@ class NodeList extends NativeFieldWrapperClass1 implements List<Node> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Node element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Node element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -21860,7 +21860,7 @@ class SourceBufferList extends EventTarget implements List<SourceBuffer> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(SourceBuffer element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(SourceBuffer element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -22174,7 +22174,7 @@ class SpeechGrammarList extends NativeFieldWrapperClass1 implements List<SpeechG
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(SpeechGrammar element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(SpeechGrammar element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -22874,7 +22874,7 @@ class SqlResultSetRowList extends NativeFieldWrapperClass1 implements List<Map>
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Map element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Map element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -24195,7 +24195,7 @@ class TextTrackCueList extends NativeFieldWrapperClass1 implements List<TextTrac
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(TextTrackCue element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(TextTrackCue element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -24410,7 +24410,7 @@ class TextTrackList extends EventTarget implements List<TextTrack> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(TextTrack element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(TextTrack element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -24817,7 +24817,7 @@ class TouchList extends NativeFieldWrapperClass1 implements List<Touch> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Touch element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Touch element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -25296,7 +25296,7 @@ class Uint16Array extends ArrayBufferView implements List<int> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(int element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(int element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -25525,7 +25525,7 @@ class Uint32Array extends ArrayBufferView implements List<int> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(int element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(int element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -25754,7 +25754,7 @@ class Uint8Array extends ArrayBufferView implements List<int> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(int element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(int element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -25981,7 +25981,7 @@ class Uint8ClampedArray extends Uint8Array implements List<int> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(int element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(int element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -29856,7 +29856,7 @@ class _ClientRectList extends NativeFieldWrapperClass1 implements List<ClientRec
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(ClientRect element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(ClientRect element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -30057,7 +30057,7 @@ class _CssRuleList extends NativeFieldWrapperClass1 implements List<CssRule> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(CssRule element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(CssRule element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -30258,7 +30258,7 @@ class _CssValueList extends CssValue implements List<CssValue> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(CssValue element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(CssValue element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -30609,7 +30609,7 @@ class _EntryArray extends NativeFieldWrapperClass1 implements List<Entry> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Entry element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Entry element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -30810,7 +30810,7 @@ class _EntryArraySync extends NativeFieldWrapperClass1 implements List<EntrySync
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(EntrySync element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(EntrySync element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -31102,7 +31102,7 @@ class _GamepadList extends NativeFieldWrapperClass1 implements List<Gamepad> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Gamepad element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Gamepad element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -31316,7 +31316,7 @@ class _MediaStreamList extends NativeFieldWrapperClass1 implements List<MediaStr
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(MediaStream element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(MediaStream element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -31517,7 +31517,7 @@ class _SpeechInputResultList extends NativeFieldWrapperClass1 implements List<Sp
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(SpeechInputResult element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(SpeechInputResult element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -31718,7 +31718,7 @@ class _SpeechRecognitionResultList extends NativeFieldWrapperClass1 implements L
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(SpeechRecognitionResult element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(SpeechRecognitionResult element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -31919,7 +31919,7 @@ class _StyleSheetList extends NativeFieldWrapperClass1 implements List<StyleShee
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(StyleSheet element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(StyleSheet element)) =>
IterableMixinWorkaround.mappedByList(this, f);

Powered by Google App Engine
This is Rietveld 408576698