| 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 html; | 5 part of html; |
| 6 | 6 |
| 7 abstract class _AttributeMap implements Map<String, String> { | 7 abstract class _AttributeMap implements Map<String, String> { |
| 8 final Element _element; | 8 final Element _element; |
| 9 | 9 |
| 10 _AttributeMap(this._element); | 10 _AttributeMap(this._element); |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 } | 63 } |
| 64 | 64 |
| 65 /** | 65 /** |
| 66 * Returns true if there is no {key, value} pair in the map. | 66 * Returns true if there is no {key, value} pair in the map. |
| 67 */ | 67 */ |
| 68 bool get isEmpty { | 68 bool get isEmpty { |
| 69 return length == 0; | 69 return length == 0; |
| 70 } | 70 } |
| 71 | 71 |
| 72 /** | 72 /** |
| 73 * Returns true if there is at least one {key, value} pair in the map. |
| 74 */ |
| 75 bool get isNotEmpty => !isEmpty; |
| 76 |
| 77 /** |
| 73 * Checks to see if the node should be included in this map. | 78 * Checks to see if the node should be included in this map. |
| 74 */ | 79 */ |
| 75 bool _matches(Node node); | 80 bool _matches(Node node); |
| 76 } | 81 } |
| 77 | 82 |
| 78 /** | 83 /** |
| 79 * Wrapper to expose [Element.attributes] as a typed map. | 84 * Wrapper to expose [Element.attributes] as a typed map. |
| 80 */ | 85 */ |
| 81 class _ElementAttributeMap extends _AttributeMap { | 86 class _ElementAttributeMap extends _AttributeMap { |
| 82 | 87 |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 } | 214 } |
| 210 }); | 215 }); |
| 211 return values; | 216 return values; |
| 212 } | 217 } |
| 213 | 218 |
| 214 int get length => keys.length; | 219 int get length => keys.length; |
| 215 | 220 |
| 216 // TODO: Use lazy iterator when it is available on Map. | 221 // TODO: Use lazy iterator when it is available on Map. |
| 217 bool get isEmpty => length == 0; | 222 bool get isEmpty => length == 0; |
| 218 | 223 |
| 224 bool get isNotEmpty => !isEmpty; |
| 225 |
| 219 // Helpers. | 226 // Helpers. |
| 220 String _attr(String key) => 'data-$key'; | 227 String _attr(String key) => 'data-$key'; |
| 221 bool _matches(String key) => key.startsWith('data-'); | 228 bool _matches(String key) => key.startsWith('data-'); |
| 222 String _strip(String key) => key.substring(5); | 229 String _strip(String key) => key.substring(5); |
| 223 } | 230 } |
| OLD | NEW |