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

Unified Diff: pkg/unittest/mock.dart

Issue 10913135: Fix issue 4191. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/mock.dart
===================================================================
--- pkg/unittest/mock.dart (revision 11963)
+++ pkg/unittest/mock.dart (working copy)
@@ -110,25 +110,25 @@
nameFilter = wrapMatcher(name);
}
argMatchers = new List<Matcher>();
- if (arg0 == _noArg) return;
+ if (arg0 === _noArg) return;
argMatchers.add(wrapMatcher(arg0));
- if (arg1 == _noArg) return;
+ if (arg1 === _noArg) return;
argMatchers.add(wrapMatcher(arg1));
- if (arg2 == _noArg) return;
+ if (arg2 === _noArg) return;
argMatchers.add(wrapMatcher(arg2));
- if (arg3 == _noArg) return;
+ if (arg3 === _noArg) return;
argMatchers.add(wrapMatcher(arg3));
- if (arg4 == _noArg) return;
+ if (arg4 === _noArg) return;
argMatchers.add(wrapMatcher(arg4));
- if (arg5 == _noArg) return;
+ if (arg5 === _noArg) return;
argMatchers.add(wrapMatcher(arg5));
- if (arg6 == _noArg) return;
+ if (arg6 === _noArg) return;
argMatchers.add(wrapMatcher(arg6));
- if (arg7 == _noArg) return;
+ if (arg7 === _noArg) return;
argMatchers.add(wrapMatcher(arg7));
- if (arg8 == _noArg) return;
+ if (arg8 === _noArg) return;
argMatchers.add(wrapMatcher(arg8));
- if (arg9 == _noArg) return;
+ if (arg9 === _noArg) return;
argMatchers.add(wrapMatcher(arg9));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698