| Index: tests/compiler/dart2js/mock_compiler.dart
|
| diff --git a/tests/compiler/dart2js/mock_compiler.dart b/tests/compiler/dart2js/mock_compiler.dart
|
| index 15ce07cca3ca373a76b382ca507e577192e28131..8f1963ccbeb95547f2e2b244a9615bbe9afd4e48 100644
|
| --- a/tests/compiler/dart2js/mock_compiler.dart
|
| +++ b/tests/compiler/dart2js/mock_compiler.dart
|
| @@ -102,9 +102,7 @@ const String DEFAULT_INTERCEPTORSLIB = r'''
|
| operator[](index);
|
| }
|
| abstract class JSMutableIndexable extends JSIndexable {}
|
| - class JSArray<E> extends Interceptor implements List<E>, JSIndexable {
|
| - JSArray();
|
| - factory JSArray.typed(a) => a;
|
| + class JSArray extends Interceptor implements List, JSIndexable {
|
| var length;
|
| operator[](index) => this[index];
|
| operator[]=(index, value) { this[index] = value; }
|
|
|