| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index f659b770e31e4ab709f0ddc1b0bba9e73e31f1a4..1857b4529869940e19253deda4986f2f8dd5cdfa 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -6833,7 +6833,7 @@ class DomMimeTypeArray implements JavaScriptIndexingBehavior, List<DomMimeType>
|
|
|
| void forEach(void f(DomMimeType element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(DomMimeType element)) =>
|
| @@ -7108,7 +7108,7 @@ class DomPluginArray implements JavaScriptIndexingBehavior, List<DomPlugin> nati
|
|
|
| void forEach(void f(DomPlugin element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(DomPlugin element)) =>
|
| @@ -7460,7 +7460,7 @@ class DomStringList implements JavaScriptIndexingBehavior, List<String> native "
|
|
|
| void forEach(void f(String element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(String element)) =>
|
| @@ -7741,7 +7741,7 @@ class _ChildrenElementList implements List<Element> {
|
| return false;
|
| }
|
|
|
| - String join([String separator]) {
|
| + String join([String separator = ""]) {
|
| return _childElements.join(separator);
|
| }
|
|
|
| @@ -7991,7 +7991,7 @@ class _FrozenElementList implements List {
|
| }
|
| }
|
|
|
| - String join([String separator]) {
|
| + String join([String separator = ""]) {
|
| return IterableMixinWorkaround.joinList(this, separator);
|
| }
|
|
|
| @@ -10373,7 +10373,7 @@ class FileList implements JavaScriptIndexingBehavior, List<File> native "*FileLi
|
|
|
| void forEach(void f(File element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(File element)) =>
|
| @@ -10870,7 +10870,7 @@ class Float32Array extends ArrayBufferView implements JavaScriptIndexingBehavior
|
|
|
| void forEach(void f(num element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(num element)) =>
|
| @@ -11109,7 +11109,7 @@ class Float64Array extends ArrayBufferView implements JavaScriptIndexingBehavior
|
|
|
| void forEach(void f(num element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(num element)) =>
|
| @@ -11768,7 +11768,7 @@ class HtmlAllCollection implements JavaScriptIndexingBehavior, List<Node> native
|
|
|
| void forEach(void f(Node element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(Node element)) =>
|
| @@ -11996,7 +11996,7 @@ class HtmlCollection implements JavaScriptIndexingBehavior, List<Node> native "*
|
|
|
| void forEach(void f(Node element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(Node element)) =>
|
| @@ -14043,7 +14043,7 @@ class Int16Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
|
|
|
| void forEach(void f(int element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(int element)) =>
|
| @@ -14282,7 +14282,7 @@ class Int32Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
|
|
|
| void forEach(void f(int element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(int element)) =>
|
| @@ -14521,7 +14521,7 @@ class Int8Array extends ArrayBufferView implements JavaScriptIndexingBehavior, L
|
|
|
| void forEach(void f(int element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(int element)) =>
|
| @@ -17107,7 +17107,7 @@ class _ChildNodeListLazy implements List {
|
| return IterableMixinWorkaround.fold(this, initialValue, combine);
|
| }
|
|
|
| - String join([String separator]) {
|
| + String join([String separator = ""]) {
|
| return IterableMixinWorkaround.joinList(this, separator);
|
| }
|
|
|
| @@ -17624,7 +17624,7 @@ class NodeList implements JavaScriptIndexingBehavior, List<Node> native "*NodeLi
|
|
|
| void forEach(void f(Node element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(Node element)) =>
|
| @@ -19934,7 +19934,7 @@ class SourceBufferList extends EventTarget implements JavaScriptIndexingBehavior
|
|
|
| void forEach(void f(SourceBuffer element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(SourceBuffer element)) =>
|
| @@ -20235,7 +20235,7 @@ class SpeechGrammarList implements JavaScriptIndexingBehavior, List<SpeechGramma
|
|
|
| void forEach(void f(SpeechGrammar element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(SpeechGrammar element)) =>
|
| @@ -21699,7 +21699,7 @@ class TextTrackCueList implements List<TextTrackCue>, JavaScriptIndexingBehavior
|
|
|
| void forEach(void f(TextTrackCue element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(TextTrackCue element)) =>
|
| @@ -21925,7 +21925,7 @@ class TextTrackList extends EventTarget implements JavaScriptIndexingBehavior, L
|
|
|
| void forEach(void f(TextTrack element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(TextTrack element)) =>
|
| @@ -22377,7 +22377,7 @@ class TouchList implements JavaScriptIndexingBehavior, List<Touch> native "*Touc
|
|
|
| void forEach(void f(Touch element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(Touch element)) =>
|
| @@ -22866,7 +22866,7 @@ class Uint16Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
|
|
|
| void forEach(void f(int element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(int element)) =>
|
| @@ -23105,7 +23105,7 @@ class Uint32Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
|
|
|
| void forEach(void f(int element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(int element)) =>
|
| @@ -23344,7 +23344,7 @@ class Uint8Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
|
|
|
| void forEach(void f(int element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(int element)) =>
|
| @@ -23580,7 +23580,7 @@ class Uint8ClampedArray extends Uint8Array implements JavaScriptIndexingBehavior
|
|
|
| void forEach(void f(int element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(int element)) =>
|
| @@ -25867,7 +25867,7 @@ class _ClientRectList implements JavaScriptIndexingBehavior, List<Rect> native "
|
|
|
| void forEach(void f(Rect element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(Rect element)) =>
|
| @@ -26094,7 +26094,7 @@ class _CssRuleList implements JavaScriptIndexingBehavior, List<CssRule> native "
|
|
|
| void forEach(void f(CssRule element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(CssRule element)) =>
|
| @@ -26312,7 +26312,7 @@ class _CssValueList extends _CSSValue implements JavaScriptIndexingBehavior, Lis
|
|
|
| void forEach(void f(_CSSValue element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(_CSSValue element)) =>
|
| @@ -26598,7 +26598,7 @@ class _EntryArray implements JavaScriptIndexingBehavior, List<Entry> native "*En
|
|
|
| void forEach(void f(Entry element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(Entry element)) =>
|
| @@ -26816,7 +26816,7 @@ class _EntryArraySync implements JavaScriptIndexingBehavior, List<_EntrySync> na
|
|
|
| void forEach(void f(_EntrySync element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(_EntrySync element)) =>
|
| @@ -27077,7 +27077,7 @@ class _GamepadList implements JavaScriptIndexingBehavior, List<Gamepad> native "
|
|
|
| void forEach(void f(Gamepad element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(Gamepad element)) =>
|
| @@ -27358,7 +27358,7 @@ class _NamedNodeMap implements JavaScriptIndexingBehavior, List<Node> native "*N
|
|
|
| void forEach(void f(Node element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(Node element)) =>
|
| @@ -27647,7 +27647,7 @@ class _SpeechInputResultList implements JavaScriptIndexingBehavior, List<SpeechI
|
|
|
| void forEach(void f(SpeechInputResult element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(SpeechInputResult element)) =>
|
| @@ -27865,7 +27865,7 @@ class _SpeechRecognitionResultList implements JavaScriptIndexingBehavior, List<S
|
|
|
| void forEach(void f(SpeechRecognitionResult element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(SpeechRecognitionResult element)) =>
|
| @@ -28083,7 +28083,7 @@ class _StyleSheetList implements JavaScriptIndexingBehavior, List<StyleSheet> na
|
|
|
| void forEach(void f(StyleSheet element)) => IterableMixinWorkaround.forEach(this, f);
|
|
|
| - String join([String separator]) =>
|
| + String join([String separator = ""]) =>
|
| IterableMixinWorkaround.joinList(this, separator);
|
|
|
| Iterable map(f(StyleSheet element)) =>
|
| @@ -28785,7 +28785,7 @@ abstract class CssClassSet implements Set<String> {
|
| readClasses().forEach(f);
|
| }
|
|
|
| - String join([String separator]) => readClasses().join(separator);
|
| + String join([String separator = ""]) => readClasses().join(separator);
|
|
|
| Iterable map(f(String element)) => readClasses().map(f);
|
|
|
| @@ -31291,7 +31291,7 @@ class _WrappedList<E> implements List<E> {
|
|
|
| bool every(bool f(E element)) => _list.every(f);
|
|
|
| - String join([String separator]) => _list.join(separator);
|
| + String join([String separator = ""]) => _list.join(separator);
|
|
|
| bool any(bool f(E element)) => _list.any(f);
|
|
|
|
|