Chromium Code Reviews| Index: pkg/third_party/html5lib/lib/src/css_class_set.dart |
| diff --git a/pkg/third_party/html5lib/lib/src/css_class_set.dart b/pkg/third_party/html5lib/lib/src/css_class_set.dart |
| index 03136a7877f139a3a6da0b88cef1f32905ab7447..daf29765730086076fdf5a25c6d18d7272daadee 100644 |
| --- a/pkg/third_party/html5lib/lib/src/css_class_set.dart |
| +++ b/pkg/third_party/html5lib/lib/src/css_class_set.dart |
| @@ -279,6 +279,8 @@ abstract class CssClassSetImpl implements CssClassSet { |
| Set<String> difference(Set<String> other) => |
| readClasses().difference(other); |
| + Set<E> cloneEmpty() => new LinkedHashSet<String>(); |
|
Lasse Reichstein Nielsen
2014/05/19 07:30:05
@jmesserly:
What does it mean that this is in pkg/
Jennifer Messerly
2014/05/19 17:44:42
it means it's under a different license (MIT) and
|
| + |
| String get first => readClasses().first; |
| String get last => readClasses().last; |
| String get single => readClasses().single; |