| Index: pkg/unittest/lib/src/operator_matchers.dart
|
| ===================================================================
|
| --- pkg/unittest/lib/src/operator_matchers.dart (revision 24669)
|
| +++ pkg/unittest/lib/src/operator_matchers.dart (working copy)
|
| @@ -9,7 +9,7 @@
|
| */
|
| Matcher isNot(matcher) => new _IsNot(wrapMatcher(matcher));
|
|
|
| -class _IsNot extends BaseMatcher {
|
| +class _IsNot extends Matcher {
|
| final Matcher _matcher;
|
|
|
| const _IsNot(Matcher this._matcher);
|
| @@ -73,7 +73,7 @@
|
| }
|
| }
|
|
|
| -class _AllOf extends BaseMatcher {
|
| +class _AllOf extends Matcher {
|
| final Iterable<Matcher> _matchers;
|
|
|
| const _AllOf(this._matchers);
|
| @@ -157,7 +157,7 @@
|
| }
|
| }
|
|
|
| -class _AnyOf extends BaseMatcher {
|
| +class _AnyOf extends Matcher {
|
| final Iterable<Matcher> _matchers;
|
|
|
| const _AnyOf(this._matchers);
|
|
|