| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of dart.dom.html; | 5 part of dart.dom.html; |
| 6 | 6 |
| 7 abstract class ImmutableListMixin<E> implements List<E> { | 7 abstract class ImmutableListMixin<E> implements List<E> { |
| 8 // From Iterable<$E>: | 8 // From Iterable<$E>: |
| 9 Iterator<E> get iterator { | 9 Iterator<E> get iterator { |
| 10 // Note: NodeLists are not fixed size. And most probably length shouldn't | 10 // Note: NodeLists are not fixed size. And most probably length shouldn't |
| 11 // be cached in both iterator _and_ forEach method. For now caching it | 11 // be cached in both iterator _and_ forEach method. For now caching it |
| 12 // for consistency. | 12 // for consistency. |
| 13 return new FixedSizeListIterator<E>(this); | 13 return new FixedSizeListIterator<E>(this); |
| 14 } | 14 } |
| 15 | 15 |
| 16 // From List<E>: | 16 // From Collection<E>: |
| 17 void set last(E value) { | |
| 18 throw new UnsupportedError("Cannot modify an immutable List."); | |
| 19 } | |
| 20 | |
| 21 void add(E value) { | 17 void add(E value) { |
| 22 throw new UnsupportedError("Cannot add to immutable List."); | 18 throw new UnsupportedError("Cannot add to immutable List."); |
| 23 } | 19 } |
| 24 | 20 |
| 25 void addAll(Iterable<E> iterable) { | 21 void addAll(Iterable<E> iterable) { |
| 26 throw new UnsupportedError("Cannot add to immutable List."); | 22 throw new UnsupportedError("Cannot add to immutable List."); |
| 27 } | 23 } |
| 28 | 24 |
| 25 // From List<E>: |
| 29 void sort([int compare(E a, E b)]) { | 26 void sort([int compare(E a, E b)]) { |
| 30 throw new UnsupportedError("Cannot sort immutable List."); | 27 throw new UnsupportedError("Cannot sort immutable List."); |
| 31 } | 28 } |
| 32 | 29 |
| 33 void shuffle([Random random]) { | 30 void shuffle([Random random]) { |
| 34 throw new UnsupportedError("Cannot shuffle immutable List."); | 31 throw new UnsupportedError("Cannot shuffle immutable List."); |
| 35 } | 32 } |
| 36 | 33 |
| 37 void insert(int index, E element) { | 34 void insert(int index, E element) { |
| 38 throw new UnsupportedError("Cannot add to immutable List."); | 35 throw new UnsupportedError("Cannot add to immutable List."); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 } | 72 } |
| 76 | 73 |
| 77 void replaceRange(int start, int end, Iterable<E> iterable) { | 74 void replaceRange(int start, int end, Iterable<E> iterable) { |
| 78 throw new UnsupportedError("Cannot modify an immutable List."); | 75 throw new UnsupportedError("Cannot modify an immutable List."); |
| 79 } | 76 } |
| 80 | 77 |
| 81 void fillRange(int start, int end, [E fillValue]) { | 78 void fillRange(int start, int end, [E fillValue]) { |
| 82 throw new UnsupportedError("Cannot modify an immutable List."); | 79 throw new UnsupportedError("Cannot modify an immutable List."); |
| 83 } | 80 } |
| 84 } | 81 } |
| OLD | NEW |