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

Side by Side Diff: sdk/lib/web_sql/dartium/web_sql_dartium.dart

Issue 13956006: Remove insertRange. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebuild DOM (unrelated CL) and update status files. 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/web_sql/dart2js/web_sql_dart2js.dart ('k') | tests/co19/co19-compiler.status » ('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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 } 378 }
379 379
380 void retainWhere(bool test(Map element)) { 380 void retainWhere(bool test(Map element)) {
381 throw new UnsupportedError("Cannot remove from immutable List."); 381 throw new UnsupportedError("Cannot remove from immutable List.");
382 } 382 }
383 383
384 void setRange(int start, int end, Iterable<Map> iterable, [int skipCount]) { 384 void setRange(int start, int end, Iterable<Map> iterable, [int skipCount]) {
385 throw new UnsupportedError("Cannot setRange on immutable List."); 385 throw new UnsupportedError("Cannot setRange on immutable List.");
386 } 386 }
387 387
388 void removeRange(int start, int rangeLength) { 388 void removeRange(int start, int end) {
389 throw new UnsupportedError("Cannot removeRange on immutable List."); 389 throw new UnsupportedError("Cannot removeRange on immutable List.");
390 } 390 }
391 391
392 void insertRange(int start, int rangeLength, [Map initialValue]) {
393 throw new UnsupportedError("Cannot insertRange on immutable List.");
394 }
395
396 Iterable<Map> getRange(int start, int end) => 392 Iterable<Map> getRange(int start, int end) =>
397 IterableMixinWorkaround.getRangeList(this, start, end); 393 IterableMixinWorkaround.getRangeList(this, start, end);
398 394
399 List<Map> sublist(int start, [int end]) { 395 List<Map> sublist(int start, [int end]) {
400 if (end == null) end = length; 396 if (end == null) end = length;
401 return Lists.getRange(this, start, end, <Map>[]); 397 return Lists.getRange(this, start, end, <Map>[]);
402 } 398 }
403 399
404 Map<int, Map> asMap() => 400 Map<int, Map> asMap() =>
405 IterableMixinWorkaround.asMapList(this); 401 IterableMixinWorkaround.asMapList(this);
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 459
464 @DocsEditable 460 @DocsEditable
465 @DomName('SQLTransactionSync') 461 @DomName('SQLTransactionSync')
466 @SupportedBrowser(SupportedBrowser.CHROME) 462 @SupportedBrowser(SupportedBrowser.CHROME)
467 @SupportedBrowser(SupportedBrowser.SAFARI) 463 @SupportedBrowser(SupportedBrowser.SAFARI)
468 @Experimental 464 @Experimental
469 abstract class _SQLTransactionSync extends NativeFieldWrapperClass1 { 465 abstract class _SQLTransactionSync extends NativeFieldWrapperClass1 {
470 _SQLTransactionSync.internal(); 466 _SQLTransactionSync.internal();
471 467
472 } 468 }
OLDNEW
« no previous file with comments | « sdk/lib/web_sql/dart2js/web_sql_dart2js.dart ('k') | tests/co19/co19-compiler.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698