| Index: pkg/analyzer/test/src/context/mock_sdk.dart
|
| diff --git a/pkg/analyzer/test/src/context/mock_sdk.dart b/pkg/analyzer/test/src/context/mock_sdk.dart
|
| index 91b4e5e5b0376758575ad918a7a72ca8b9712d48..b864e53cd5e1b610ee06d00cb31b7a500c533ecf 100644
|
| --- a/pkg/analyzer/test/src/context/mock_sdk.dart
|
| +++ b/pkg/analyzer/test/src/context/mock_sdk.dart
|
| @@ -221,6 +221,7 @@ abstract class Iterable<E> {
|
| class List<E> implements Iterable<E> {
|
| List();
|
| void add(E value) {}
|
| + void addAll(Iterable<E> iterable) {}
|
| E operator [](int index) => null;
|
| void operator []=(int index, E value) {}
|
| Iterator<E> get iterator => null;
|
|
|