| 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 library matcher.iterable_matchers; | 5 library matcher.iterable_matchers; |
| 6 | 6 |
| 7 import 'core_matchers.dart'; | 7 import 'core_matchers.dart'; |
| 8 import 'description.dart'; | 8 import 'description.dart'; |
| 9 import 'interfaces.dart'; | 9 import 'interfaces.dart'; |
| 10 import 'util.dart'; | 10 import 'util.dart'; |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 } else { | 258 } else { |
| 259 return mismatchDescription | 259 return mismatchDescription |
| 260 .add('has ') | 260 .add('has ') |
| 261 .addDescriptionOf(matchState["actual"]) | 261 .addDescriptionOf(matchState["actual"]) |
| 262 .add(' which is not $_description ') | 262 .add(' which is not $_description ') |
| 263 .addDescriptionOf(matchState["expected"]) | 263 .addDescriptionOf(matchState["expected"]) |
| 264 .add(' at index ${matchState["index"]}'); | 264 .add(' at index ${matchState["index"]}'); |
| 265 } | 265 } |
| 266 } | 266 } |
| 267 } | 267 } |
| OLD | NEW |