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

Unified Diff: pkg/matcher/test/test_common.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, 7 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 | « pkg/matcher/test/string_matchers_test.dart ('k') | pkg/pkg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/matcher/test/test_common.dart
diff --git a/pkg/matcher/test/test_common.dart b/pkg/matcher/test/test_common.dart
index 93f45f33737c2a9c97334bf134bed6da8e96d58d..562786dfa286477249a7091e7ca183c06a41bf34 100644
--- a/pkg/matcher/test/test_common.dart
+++ b/pkg/matcher/test/test_common.dart
@@ -13,13 +13,13 @@ class Widget {
}
class HasPrice extends CustomMatcher {
- HasPrice(matcher) : super("Widget with a price that is", "price", matcher);
+ HasPrice(matcher) :
+ super("Widget with a price that is", "price", matcher);
featureValueOf(actual) => actual.price;
}
-class SimpleIterable extends IterableBase<int> {
- final int count;
-
+class SimpleIterable extends IterableBase {
+ int count;
SimpleIterable(this.count);
bool contains(int val) => count < val ? false : true;
@@ -34,15 +34,15 @@ class SimpleIterable extends IterableBase<int> {
String toString() => "<[$count]>";
Iterator get iterator {
- return new _SimpleIterator(count);
+ return new SimpleIterator(count);
}
}
-class _SimpleIterator implements Iterator<int> {
+class SimpleIterator implements Iterator {
int _count;
int _current;
- _SimpleIterator(this._count);
+ SimpleIterator(this._count);
bool moveNext() {
if (_count > 0) {
@@ -54,6 +54,6 @@ class _SimpleIterator implements Iterator<int> {
return false;
}
- int get current => _current;
+ get current => _current;
}
« no previous file with comments | « pkg/matcher/test/string_matchers_test.dart ('k') | pkg/pkg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698