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

Side by Side Diff: sdk/lib/web_sql/dart2js/web_sql_dart2js.dart

Issue 13945009: Make default argument to Iterable.join be "". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/svg/dartium/svg_dartium.dart ('k') | sdk/lib/web_sql/dartium/web_sql_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * An API for storing data in the browser that can be queried with SQL. 2 * An API for storing data in the browser that can be queried with SQL.
3 * 3 *
4 * **Caution:** this specification is no longer actively maintained by the Web 4 * **Caution:** this specification is no longer actively maintained by the Web
5 * Applications Working Group and may be removed at any time. 5 * Applications Working Group and may be removed at any time.
6 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase /) 6 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase /)
7 * for more information. 7 * for more information.
8 * 8 *
9 * The [dart:indexed_db] APIs is a recommended alternatives. 9 * The [dart:indexed_db] APIs is a recommended alternatives.
10 */ 10 */
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 } 228 }
229 229
230 dynamic fold(dynamic initialValue, dynamic combine(dynamic, Map)) { 230 dynamic fold(dynamic initialValue, dynamic combine(dynamic, Map)) {
231 return IterableMixinWorkaround.fold(this, initialValue, combine); 231 return IterableMixinWorkaround.fold(this, initialValue, combine);
232 } 232 }
233 233
234 bool contains(Map element) => IterableMixinWorkaround.contains(this, element); 234 bool contains(Map element) => IterableMixinWorkaround.contains(this, element);
235 235
236 void forEach(void f(Map element)) => IterableMixinWorkaround.forEach(this, f); 236 void forEach(void f(Map element)) => IterableMixinWorkaround.forEach(this, f);
237 237
238 String join([String separator]) => 238 String join([String separator = ""]) =>
239 IterableMixinWorkaround.joinList(this, separator); 239 IterableMixinWorkaround.joinList(this, separator);
240 240
241 Iterable map(f(Map element)) => 241 Iterable map(f(Map element)) =>
242 IterableMixinWorkaround.mapList(this, f); 242 IterableMixinWorkaround.mapList(this, f);
243 243
244 Iterable<Map> where(bool f(Map element)) => 244 Iterable<Map> where(bool f(Map element)) =>
245 IterableMixinWorkaround.where(this, f); 245 IterableMixinWorkaround.where(this, f);
246 246
247 Iterable expand(Iterable f(Map element)) => 247 Iterable expand(Iterable f(Map element)) =>
248 IterableMixinWorkaround.expand(this, f); 248 IterableMixinWorkaround.expand(this, f);
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 // BSD-style license that can be found in the LICENSE file. 452 // BSD-style license that can be found in the LICENSE file.
453 453
454 454
455 @DocsEditable 455 @DocsEditable
456 @DomName('SQLTransactionSync') 456 @DomName('SQLTransactionSync')
457 @SupportedBrowser(SupportedBrowser.CHROME) 457 @SupportedBrowser(SupportedBrowser.CHROME)
458 @SupportedBrowser(SupportedBrowser.SAFARI) 458 @SupportedBrowser(SupportedBrowser.SAFARI)
459 @Experimental 459 @Experimental
460 abstract class _SQLTransactionSync native "*SQLTransactionSync" { 460 abstract class _SQLTransactionSync native "*SQLTransactionSync" {
461 } 461 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dartium/svg_dartium.dart ('k') | sdk/lib/web_sql/dartium/web_sql_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698