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

Unified Diff: lib/unittest/numeric_matchers.dart

Issue 10545114: Removes constructor initializer in named parameter of private member (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: # Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/unittest/core_matchers.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/unittest/numeric_matchers.dart
diff --git a/lib/unittest/numeric_matchers.dart b/lib/unittest/numeric_matchers.dart
index b7379e45b5b1a639b5f60fbb87ea65f86b04343d..53cf195c1a3cea289d2241234179dd4896c334e3 100644
--- a/lib/unittest/numeric_matchers.dart
+++ b/lib/unittest/numeric_matchers.dart
@@ -95,7 +95,7 @@ class _OrderingComparison extends BaseMatcher {
this._lessThanValue,
this._greaterThanValue,
this._comparisonDescription,
- [this._valueInDescription = true]);
+ [valueInDescription = true]) : this._valueInDescription = valueInDescription;
Ivan Posva 2012/06/12 10:43:05 Long line?
bool matches(item) {
if (item == _value) {
« no previous file with comments | « lib/unittest/core_matchers.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698