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

Unified Diff: pkg/scheduled_test/lib/src/task.dart

Issue 164883002: pkg/scheduled_test: formatter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 6 years, 10 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/scheduled_test/lib/src/substitute_future.dart ('k') | pkg/scheduled_test/lib/src/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/scheduled_test/lib/src/task.dart
diff --git a/pkg/scheduled_test/lib/src/task.dart b/pkg/scheduled_test/lib/src/task.dart
index 5bd52430a584db514ce2113c2d0fc796d65d7630..d55f4273e3138830dfeec6ec3919920ff62f28a9 100644
--- a/pkg/scheduled_test/lib/src/task.dart
+++ b/pkg/scheduled_test/lib/src/task.dart
@@ -64,10 +64,10 @@ class Task {
final Chain stackChain;
Task(fn(), String description, TaskQueue queue)
- : this._(fn, description, queue, null, queue.contents.length);
+ : this._(fn, description, queue, null, queue.contents.length);
Task._child(fn(), String description, Task parent)
- : this._(fn, description, parent.queue, parent, parent.children.length);
+ : this._(fn, description, parent.queue, parent, parent.children.length);
Task._(fn(), this.description, TaskQueue queue, this.parent, this._id)
: queue = queue,
« no previous file with comments | « pkg/scheduled_test/lib/src/substitute_future.dart ('k') | pkg/scheduled_test/lib/src/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698