Chromium Code Reviews| Index: lib/src/impl.dart |
| diff --git a/lib/src/impl.dart b/lib/src/impl.dart |
| index 6a4053060ad7bc3e119ba928942f90716140b2cb..c920e5250729802cf2d1afbffbd2ad1ee5f48198 100644 |
| --- a/lib/src/impl.dart |
| +++ b/lib/src/impl.dart |
| @@ -53,4 +53,9 @@ class BooleanSelectorImpl implements BooleanSelector { |
| } |
| String toString() => _selector.toString(); |
| + |
| + bool operator==(other) => |
| + other is BooleanSelectorImpl && _selector == other._selector; |
| + |
| + int get hashCode => _selector.hashCode; |
| } |