Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: pkg/matcher/lib/src/map_matchers.dart

Issue 313563002: pkg/matcher: Reverting 36881,36896 while investigating dart2js checked crash (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/matcher/lib/src/iterable_matchers.dart ('k') | pkg/matcher/lib/src/numeric_matchers.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.map_matchers; 5 part of matcher;
6 6
7 import 'expect.dart'; 7 /**
8 import 'interfaces.dart'; 8 * Returns a matcher which matches maps containing the given [value].
9 9 */
10 /// Returns a matcher which matches maps containing the given [value].
11 Matcher containsValue(value) => new _ContainsValue(value); 10 Matcher containsValue(value) => new _ContainsValue(value);
12 11
13 class _ContainsValue extends Matcher { 12 class _ContainsValue extends Matcher {
14 final _value; 13 final _value;
15 14
16 const _ContainsValue(this._value); 15 const _ContainsValue(this._value);
17 16
18 bool matches(item, Map matchState) => item.containsValue(_value); 17 bool matches(item, Map matchState) => item.containsValue(_value);
19 Description describe(Description description) => 18 Description describe(Description description) =>
20 description.add('contains value ').addDescriptionOf(_value); 19 description.add('contains value ').addDescriptionOf(_value);
21 } 20 }
22 21
23 /// Returns a matcher which matches maps containing the key-value pair 22 /**
24 /// with [key] => [value]. 23 * Returns a matcher which matches maps containing the key-value pair
24 * with [key] => [value].
25 */
25 Matcher containsPair(key, value) => 26 Matcher containsPair(key, value) =>
26 new _ContainsMapping(key, wrapMatcher(value)); 27 new _ContainsMapping(key, wrapMatcher(value));
27 28
28 class _ContainsMapping extends Matcher { 29 class _ContainsMapping extends Matcher {
29 final _key; 30 final _key;
30 final Matcher _valueMatcher; 31 final Matcher _valueMatcher;
31 32
32 const _ContainsMapping(this._key, Matcher this._valueMatcher); 33 const _ContainsMapping(this._key, Matcher this._valueMatcher);
33 34
34 bool matches(item, Map matchState) => 35 bool matches(item, Map matchState) =>
(...skipping 12 matching lines...) Expand all
47 .addDescriptionOf(_key); 48 .addDescriptionOf(_key);
48 } else { 49 } else {
49 mismatchDescription.add(' contains key ').addDescriptionOf(_key). 50 mismatchDescription.add(' contains key ').addDescriptionOf(_key).
50 add(' but with value '); 51 add(' but with value ');
51 _valueMatcher.describeMismatch(item[_key], mismatchDescription, 52 _valueMatcher.describeMismatch(item[_key], mismatchDescription,
52 matchState, verbose); 53 matchState, verbose);
53 return mismatchDescription; 54 return mismatchDescription;
54 } 55 }
55 } 56 }
56 } 57 }
OLDNEW
« no previous file with comments | « pkg/matcher/lib/src/iterable_matchers.dart ('k') | pkg/matcher/lib/src/numeric_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698