| 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 CssClassSet implements Set<String> { | 7 abstract class CssClassSet implements Set<String> { |
| 8 | 8 |
| 9 String toString() { | 9 String toString() { |
| 10 return readClasses().join(' '); | 10 return readClasses().join(' '); |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 bool containsAll(Collection<String> collection) => | 108 bool containsAll(Collection<String> collection) => |
| 109 readClasses().containsAll(collection); | 109 readClasses().containsAll(collection); |
| 110 | 110 |
| 111 Set<String> intersection(Collection<String> other) => | 111 Set<String> intersection(Collection<String> other) => |
| 112 readClasses().intersection(other); | 112 readClasses().intersection(other); |
| 113 | 113 |
| 114 String get first => readClasses().first; | 114 String get first => readClasses().first; |
| 115 String get last => readClasses().last; | 115 String get last => readClasses().last; |
| 116 String get single => readClasses().single; | 116 String get single => readClasses().single; |
| 117 List<String> toList({ bool growable: false }) => | 117 List<String> toList({ bool growable: true }) => |
| 118 readClasses().toList(growable: growable); | 118 readClasses().toList(growable: growable); |
| 119 Set<String> toSet() => readClasses().toSet(); | 119 Set<String> toSet() => readClasses().toSet(); |
| 120 String min([int compare(String a, String b)]) => | 120 String min([int compare(String a, String b)]) => |
| 121 readClasses().min(compare); | 121 readClasses().min(compare); |
| 122 String max([int compare(String a, String b)]) => | 122 String max([int compare(String a, String b)]) => |
| 123 readClasses().max(compare); | 123 readClasses().max(compare); |
| 124 Iterable<String> take(int n) => readClasses().take(n); | 124 Iterable<String> take(int n) => readClasses().take(n); |
| 125 Iterable<String> takeWhile(bool test(String value)) => | 125 Iterable<String> takeWhile(bool test(String value)) => |
| 126 readClasses().takeWhile(test); | 126 readClasses().takeWhile(test); |
| 127 Iterable<String> skip(int n) => readClasses().skip(n); | 127 Iterable<String> skip(int n) => readClasses().skip(n); |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 */ | 162 */ |
| 163 Set<String> readClasses(); | 163 Set<String> readClasses(); |
| 164 | 164 |
| 165 /** | 165 /** |
| 166 * Join all the elements of a set into one string and write | 166 * Join all the elements of a set into one string and write |
| 167 * back to the element. | 167 * back to the element. |
| 168 * This is intended to be overridden by specific implementations. | 168 * This is intended to be overridden by specific implementations. |
| 169 */ | 169 */ |
| 170 void writeClasses(Set<String> s); | 170 void writeClasses(Set<String> s); |
| 171 } | 171 } |
| OLD | NEW |