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

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

Issue 13528004: Remove addLast from List. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove typo 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 Map elementAt(int index) { 321 Map elementAt(int index) {
322 return this[index]; 322 return this[index];
323 } 323 }
324 324
325 // From Collection<Map>: 325 // From Collection<Map>:
326 326
327 void add(Map value) { 327 void add(Map value) {
328 throw new UnsupportedError("Cannot add to immutable List."); 328 throw new UnsupportedError("Cannot add to immutable List.");
329 } 329 }
330 330
331 void addLast(Map value) {
332 throw new UnsupportedError("Cannot add to immutable List.");
333 }
334
335 void addAll(Iterable<Map> iterable) { 331 void addAll(Iterable<Map> iterable) {
336 throw new UnsupportedError("Cannot add to immutable List."); 332 throw new UnsupportedError("Cannot add to immutable List.");
337 } 333 }
338 334
339 // From List<Map>: 335 // From List<Map>:
340 void set length(int value) { 336 void set length(int value) {
341 throw new UnsupportedError("Cannot resize immutable List."); 337 throw new UnsupportedError("Cannot resize immutable List.");
342 } 338 }
343 339
344 void clear() { 340 void clear() {
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 @DomName('SQLTransactionSync') 473 @DomName('SQLTransactionSync')
478 @SupportedBrowser(SupportedBrowser.CHROME) 474 @SupportedBrowser(SupportedBrowser.CHROME)
479 @SupportedBrowser(SupportedBrowser.SAFARI) 475 @SupportedBrowser(SupportedBrowser.SAFARI)
480 @Experimental 476 @Experimental
481 class SqlTransactionSync native "*SQLTransactionSync" { 477 class SqlTransactionSync native "*SQLTransactionSync" {
482 478
483 @DomName('SQLTransactionSync.executeSql') 479 @DomName('SQLTransactionSync.executeSql')
484 @DocsEditable 480 @DocsEditable
485 SqlResultSet executeSql(String sqlStatement, List arguments) native; 481 SqlResultSet executeSql(String sqlStatement, List arguments) native;
486 } 482 }
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