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