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

Side by Side Diff: pkg/serialization/lib/src/serialization_rule.dart

Issue 11931034: Add methods to Collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. 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:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « editor/util/debuggertest/pets.dart ('k') | runtime/lib/array.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 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of serialization; 5 part of serialization;
6 6
7 // TODO(alanknight): We should have an example and tests for subclassing 7 // TODO(alanknight): We should have an example and tests for subclassing
8 // serialization rule rather than using the hard-coded ClosureToMap rule. And 8 // serialization rule rather than using the hard-coded ClosureToMap rule. And
9 // possibly an abstract superclass that's designed to be subclassed that way. 9 // possibly an abstract superclass that's designed to be subclassed that way.
10 /** 10 /**
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 throw new UnsupportedError("Not modifiable"); 439 throw new UnsupportedError("Not modifiable");
440 } 440 }
441 operator []=(x, y) => _throw(); 441 operator []=(x, y) => _throw();
442 add(x) => _throw(); 442 add(x) => _throw();
443 addLast(x) => _throw(); 443 addLast(x) => _throw();
444 addAll(x) => _throw(); 444 addAll(x) => _throw();
445 sort([f]) => _throw(); 445 sort([f]) => _throw();
446 clear() => _throw(); 446 clear() => _throw();
447 removeAt(x) => _throw(); 447 removeAt(x) => _throw();
448 removeLast() => _throw(); 448 removeLast() => _throw();
449 remove(x) => _throw();
450 removeAll(x) => _throw();
451 retainAll(x) => _throw();
452 removeMatching(x) => _throw();
453 retainMatching(x) => _throw();
449 getRange(x, y) => _throw(); 454 getRange(x, y) => _throw();
450 setRange(x, y, z, [a]) => _throw(); 455 setRange(x, y, z, [a]) => _throw();
451 removeRange(x, y) => _throw(); 456 removeRange(x, y) => _throw();
452 insertRange(x, y, [z]) => _throw(); 457 insertRange(x, y, [z]) => _throw();
453 void set length(x) => _throw(); 458 void set length(x) => _throw();
454 } 459 }
OLDNEW
« no previous file with comments | « editor/util/debuggertest/pets.dart ('k') | runtime/lib/array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698