| 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 /** | 5 /** |
| 6 * Returns a matcher which matches [Collection]s in which all elements | 6 * Returns a matcher which matches [Collection]s in which all elements |
| 7 * match the given [matcher]. | 7 * match the given [matcher]. |
| 8 */ | 8 */ |
| 9 Matcher everyElement(matcher) => new _EveryElement(wrapMatcher(matcher)); | 9 Matcher everyElement(matcher) => new _EveryElement(wrapMatcher(matcher)); |
| 10 | 10 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 176 |
| 177 Description describeMismatch(item, Description mismatchDescription, | 177 Description describeMismatch(item, Description mismatchDescription, |
| 178 MatchState matchState, bool verbose) => | 178 MatchState matchState, bool verbose) => |
| 179 mismatchDescription.add(_test(item)); | 179 mismatchDescription.add(_test(item)); |
| 180 } | 180 } |
| 181 | 181 |
| 182 /** | 182 /** |
| 183 * Collection matchers match against [Collection]s. We add this intermediate | 183 * Collection matchers match against [Collection]s. We add this intermediate |
| 184 * class to give better mismatch error messages than the base Matcher class. | 184 * class to give better mismatch error messages than the base Matcher class. |
| 185 */ | 185 */ |
| 186 /* abstract */ class _CollectionMatcher extends BaseMatcher { | 186 abstract class _CollectionMatcher extends BaseMatcher { |
| 187 const _CollectionMatcher(); | 187 const _CollectionMatcher(); |
| 188 Description describeMismatch(item, Description mismatchDescription, | 188 Description describeMismatch(item, Description mismatchDescription, |
| 189 MatchState matchState, bool verbose) { | 189 MatchState matchState, bool verbose) { |
| 190 if (item is !Collection) { | 190 if (item is !Collection) { |
| 191 return mismatchDescription. | 191 return mismatchDescription. |
| 192 addDescriptionOf(item). | 192 addDescriptionOf(item). |
| 193 add(' not a collection'); | 193 add(' not a collection'); |
| 194 } else { | 194 } else { |
| 195 return super.describeMismatch(item, mismatchDescription, matchState, | 195 return super.describeMismatch(item, mismatchDescription, matchState, |
| 196 verbose); | 196 verbose); |
| 197 } | 197 } |
| 198 } | 198 } |
| 199 } | 199 } |
| OLD | NEW |