Chromium Code Reviews| Index: lib/core/list.dart |
| diff --git a/lib/core/list.dart b/lib/core/list.dart |
| index 37a9dd03652e22c76263543b08bfe4b1a5081ba1..6dd841fdc728c734eb4ca6151cd66cfd90b39f85 100644 |
| --- a/lib/core/list.dart |
| +++ b/lib/core/list.dart |
| @@ -126,7 +126,7 @@ interface List<E> extends Collection<E>, Sequence<E> |
| * Returns the last element of the list, or throws an out of bounds |
| * exception if the list is empty. |
| */ |
| - E last(); |
| + E get last; |
| /** |
| * Returns a new list containing [length] elements from the list, |