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/util.dart

Issue 807193003: Re-apply "Remove unittest and matcher from the repo." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 6 years 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/throws_matchers.dart ('k') | pkg/matcher/pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
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.
4
5 library matcher.util;
6
7 import 'core_matchers.dart';
8 import 'interfaces.dart';
9
10 /// Useful utility for nesting match states.
11 void addStateInfo(Map matchState, Map values) {
12 var innerState = new Map.from(matchState);
13 matchState.clear();
14 matchState['state'] = innerState;
15 matchState.addAll(values);
16 }
17
18 /// Takes an argument and returns an equivalent [Matcher].
19 ///
20 /// If the argument is already a matcher this does nothing,
21 /// else if the argument is a function, it generates a predicate
22 /// function matcher, else it generates an equals matcher.
23 Matcher wrapMatcher(x) {
24 if (x is Matcher) {
25 return x;
26 } else if (x is Function) {
27 return predicate(x);
28 } else {
29 return equals(x);
30 }
31 }
OLDNEW
« no previous file with comments | « pkg/matcher/lib/src/throws_matchers.dart ('k') | pkg/matcher/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698