| Index: runtime/lib/array.dart
|
| diff --git a/runtime/lib/array.dart b/runtime/lib/array.dart
|
| index 5607398ec221b9d4b3937d33b7b01fa63dd70a84..b0dcf3a6efe844432ef491910f53a682f3d3d9bc 100644
|
| --- a/runtime/lib/array.dart
|
| +++ b/runtime/lib/array.dart
|
| @@ -16,7 +16,7 @@ class ObjectArray<E> implements List<E> {
|
| return Collections.collectionToString(this);
|
| }
|
|
|
| - int get length() native "ObjectArray_getLength";
|
| + int get length native "ObjectArray_getLength";
|
|
|
| void _copyFromObjectArray(ObjectArray src,
|
| int srcStart,
|
| @@ -159,7 +159,7 @@ class ImmutableArray<E> implements List<E> {
|
| "Cannot modify an immutable array");
|
| }
|
|
|
| - int get length() native "ObjectArray_getLength";
|
| + int get length native "ObjectArray_getLength";
|
|
|
| void copyFrom(List src, int srcStart, int dstStart, int count) {
|
| throw const UnsupportedOperationException(
|
|
|