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

Unified Diff: pkg/serialization/lib/src/serialization_rule.dart

Issue 13985040: adding missing interfaces to _LazyList from Adam Singer <financeCoding@gmail.com> (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/serialization/lib/src/serialization_rule.dart
diff --git a/pkg/serialization/lib/src/serialization_rule.dart b/pkg/serialization/lib/src/serialization_rule.dart
index 0fc6f3e3d41f5a96f00117d0f9c6131b50f2a0bf..d7560b7e274792e97b6c9ad613a272130aaa3044 100644
--- a/pkg/serialization/lib/src/serialization_rule.dart
+++ b/pkg/serialization/lib/src/serialization_rule.dart
@@ -567,6 +567,8 @@ class _LazyList extends IterableBase implements List {
sort([f]) => _throw();
clear() => _throw();
insert(x, y) => _throw();
+ insertAll(x, y) => _throw();
+ fillRange(x, y, [z]) => _throw();
removeAt(x) => _throw();
remove(x) => _throw();
removeLast() => _throw();
@@ -574,8 +576,10 @@ class _LazyList extends IterableBase implements List {
retainAll(x) => _throw();
removeWhere(x) => _throw();
retainWhere(x) => _throw();
+ replaceRange(x, y, z) => _throw();
getRange(x, y) => _throw();
- setRange(x, y, z, [a]) => _throw();
+ setRange(x, y, z, [a = 0]) => _throw();
+ setAll(x, y) => _throw();
removeRange(x, y) => _throw();
get reversed => _throw();
void set length(x) => _throw();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698