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 // Immutable map class for compiler generated map literals. | 4 // Immutable map class for compiler generated map literals. |
5 | 5 |
6 class ImmutableMap<K, V> implements Map<K, V> { | 6 class ImmutableMap<K, V> implements Map<K, V> { |
7 final _ImmutableList _kvPairs; | 7 final _ImmutableList _kvPairs; |
8 | 8 |
9 const ImmutableMap._create(_ImmutableList keyValuePairs) | 9 const ImmutableMap._create(_ImmutableList keyValuePairs) |
10 : _kvPairs = keyValuePairs; | 10 : _kvPairs = keyValuePairs; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 | 78 |
79 V remove(Object key) { | 79 V remove(Object key) { |
80 throw new UnsupportedError("Cannot remove from unmodifiable Map"); | 80 throw new UnsupportedError("Cannot remove from unmodifiable Map"); |
81 } | 81 } |
82 | 82 |
83 String toString() { | 83 String toString() { |
84 return Maps.mapToString(this); | 84 return Maps.mapToString(this); |
85 } | 85 } |
86 } | 86 } |
87 | 87 |
88 class _ImmutableMapKeyIterable<E> extends EfficientLengthIterable<E> { | 88 class _ImmutableMapKeyIterable<E> extends IterableBase<E> |
| 89 implements EfficientLength { |
89 final ImmutableMap _map; | 90 final ImmutableMap _map; |
90 _ImmutableMapKeyIterable(this._map); | 91 _ImmutableMapKeyIterable(this._map); |
91 | 92 |
92 Iterator<E> get iterator { | 93 Iterator<E> get iterator { |
93 return new _ImmutableMapKeyIterator<E>(_map); | 94 return new _ImmutableMapKeyIterator<E>(_map); |
94 } | 95 } |
95 | 96 |
96 int get length => _map.length; | 97 int get length => _map.length; |
97 } | 98 } |
98 | 99 |
99 class _ImmutableMapValueIterable<E> extends EfficientLengthIterable<E> { | 100 class _ImmutableMapValueIterable<E> extends IterableBase<E> |
| 101 implements EfficientLength { |
100 final ImmutableMap _map; | 102 final ImmutableMap _map; |
101 _ImmutableMapValueIterable(this._map); | 103 _ImmutableMapValueIterable(this._map); |
102 | 104 |
103 Iterator<E> get iterator { | 105 Iterator<E> get iterator { |
104 return new _ImmutableMapValueIterator<E>(_map); | 106 return new _ImmutableMapValueIterator<E>(_map); |
105 } | 107 } |
106 | 108 |
107 int get length => _map.length; | 109 int get length => _map.length; |
108 } | 110 } |
109 | 111 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 _current = _map._kvPairs[newIndex * 2 + 1]; | 145 _current = _map._kvPairs[newIndex * 2 + 1]; |
144 return true; | 146 return true; |
145 } | 147 } |
146 _current = null; | 148 _current = null; |
147 _index = _map.length; | 149 _index = _map.length; |
148 return false; | 150 return false; |
149 } | 151 } |
150 | 152 |
151 E get current => _current; | 153 E get current => _current; |
152 } | 154 } |
OLD | NEW |