| Index: sdk/lib/core/list.dart
|
| diff --git a/sdk/lib/core/list.dart b/sdk/lib/core/list.dart
|
| index f14478273f97fda0caad061b7b8586dad9b8a9d5..12b8aedfb5baa03647163e15411c0d14f47aaa2b 100644
|
| --- a/sdk/lib/core/list.dart
|
| +++ b/sdk/lib/core/list.dart
|
| @@ -118,6 +118,13 @@ abstract class List<E> implements Collection<E> {
|
| void operator []=(int index, E value);
|
|
|
| /**
|
| + * Returns the number of elements in the list.
|
| + *
|
| + * The valid indices for a list are 0 through `length - 1`.
|
| + */
|
| + int get length;
|
| +
|
| + /**
|
| * Changes the length of the list. If [newLength] is greater than
|
| * the current [length], entries are initialized to [:null:]. Throws
|
| * an [UnsupportedError] if the list is not extendable.
|
|
|