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

Unified Diff: packages/matcher/lib/src/map_matchers.dart

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/matcher/lib/src/iterable_matchers.dart ('k') | packages/matcher/lib/src/numeric_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/matcher/lib/src/map_matchers.dart
diff --git a/packages/matcher/lib/src/map_matchers.dart b/packages/matcher/lib/src/map_matchers.dart
index a44148fa118bb48f9e1c070d3203a69a4ee8fdaa..47cddef75360ca6ae6b771adc109d15a2d25c63d 100644
--- a/packages/matcher/lib/src/map_matchers.dart
+++ b/packages/matcher/lib/src/map_matchers.dart
@@ -27,7 +27,7 @@ class _ContainsMapping extends Matcher {
final _key;
final Matcher _valueMatcher;
- const _ContainsMapping(this._key, Matcher this._valueMatcher);
+ const _ContainsMapping(this._key, this._valueMatcher);
bool matches(item, Map matchState) =>
item.containsKey(_key) && _valueMatcher.matches(item[_key], matchState);
« no previous file with comments | « packages/matcher/lib/src/iterable_matchers.dart ('k') | packages/matcher/lib/src/numeric_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698