| 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 8c58af638e310cbad099689ac8421af475a840f0..de5113c7844dfc548bc07c3f8eec69e9e8307a86 100644
|
| --- a/pkg/serialization/lib/src/serialization_rule.dart
|
| +++ b/pkg/serialization/lib/src/serialization_rule.dart
|
| @@ -542,6 +542,8 @@ class _LazyList extends Iterable implements List {
|
| indexOf(x, [pos = 0]) => _inflated.toList().indexOf(x);
|
| lastIndexOf(x, [pos]) => _inflated.toList().lastIndexOf(x);
|
|
|
| + Map<int, dynamic> asMap() => IterableMixinWorkaround.asMapList(this);
|
| +
|
| // These operations are all invalid
|
| _throw() {
|
| throw new UnsupportedError("Not modifiable");
|
|
|