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 d9aed0f9b036ae49e1b853f7cc522df9acb3ba33..49cd82a89a830491cd9a97d14e33cb48ae10c566 100644 |
--- a/pkg/serialization/lib/src/serialization_rule.dart |
+++ b/pkg/serialization/lib/src/serialization_rule.dart |
@@ -446,9 +446,14 @@ class _LazyList extends Iterable implements List { |
clear() => _throw(); |
removeAt(x) => _throw(); |
removeLast() => _throw(); |
+ remove(x) => _throw(); |
+ removeAll(x) => _throw(); |
+ retainAll(x) => _throw(); |
+ removeMatching(x) => _throw(); |
+ retainMatching(x) => _throw(); |
getRange(x, y) => _throw(); |
setRange(x, y, z, [a]) => _throw(); |
removeRange(x, y) => _throw(); |
insertRange(x, y, [z]) => _throw(); |
void set length(x) => _throw(); |
-} |
+} |