| Index: tests/compiler/dart2js/mock_compiler.dart
|
| diff --git a/tests/compiler/dart2js/mock_compiler.dart b/tests/compiler/dart2js/mock_compiler.dart
|
| index 8a1a2c0827201b935e3df52bdb39a9e30005797e..453bbf2d6269360dd347978cc4fd92b182637f7c 100644
|
| --- a/tests/compiler/dart2js/mock_compiler.dart
|
| +++ b/tests/compiler/dart2js/mock_compiler.dart
|
| @@ -81,13 +81,14 @@ const String DEFAULT_INTERCEPTORSLIB = r'''
|
| abstract class JSIndexable {
|
| get length;
|
| }
|
| + abstract class JSMutableIndexable extends JSIndexable {}
|
| class JSArray extends Interceptor implements List, JSIndexable {
|
| var length;
|
| operator[](index) {}
|
| operator[]=(index, value) {}
|
| var add;
|
| }
|
| - class JSMutableArray extends JSArray {}
|
| + class JSMutableArray extends JSArray implements JSMutableIndexable {}
|
| class JSFixedArray extends JSMutableArray {}
|
| class JSExtendableArray extends JSMutableArray {}
|
| class JSString extends Interceptor implements String, JSIndexable {
|
|
|