Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: tools/dom/src/AttributeMap.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/dom/scripts/idlparser.dart ('k') | tools/dom/src/CssClassSet.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 */ 154 */
155 class _DataAttributeMap implements Map<String, String> { 155 class _DataAttributeMap implements Map<String, String> {
156 156
157 final Map<String, String> $dom_attributes; 157 final Map<String, String> $dom_attributes;
158 158
159 _DataAttributeMap(this.$dom_attributes); 159 _DataAttributeMap(this.$dom_attributes);
160 160
161 // interface Map 161 // interface Map
162 162
163 // TODO: Use lazy iterator when it is available on Map. 163 // TODO: Use lazy iterator when it is available on Map.
164 bool containsValue(String value) => values.some((v) => v == value); 164 bool containsValue(String value) => values.any((v) => v == value);
165 165
166 bool containsKey(String key) => $dom_attributes.containsKey(_attr(key)); 166 bool containsKey(String key) => $dom_attributes.containsKey(_attr(key));
167 167
168 String operator [](String key) => $dom_attributes[_attr(key)]; 168 String operator [](String key) => $dom_attributes[_attr(key)];
169 169
170 void operator []=(String key, value) { 170 void operator []=(String key, value) {
171 $dom_attributes[_attr(key)] = '$value'; 171 $dom_attributes[_attr(key)] = '$value';
172 } 172 }
173 173
174 String putIfAbsent(String key, String ifAbsent()) => 174 String putIfAbsent(String key, String ifAbsent()) =>
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 int get length => keys.length; 214 int get length => keys.length;
215 215
216 // TODO: Use lazy iterator when it is available on Map. 216 // TODO: Use lazy iterator when it is available on Map.
217 bool get isEmpty => length == 0; 217 bool get isEmpty => length == 0;
218 218
219 // Helpers. 219 // Helpers.
220 String _attr(String key) => 'data-$key'; 220 String _attr(String key) => 'data-$key';
221 bool _matches(String key) => key.startsWith('data-'); 221 bool _matches(String key) => key.startsWith('data-');
222 String _strip(String key) => key.substring(5); 222 String _strip(String key) => key.substring(5);
223 } 223 }
OLDNEW
« no previous file with comments | « tools/dom/scripts/idlparser.dart ('k') | tools/dom/src/CssClassSet.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698