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

Unified Diff: tests/lib/mirrors/new_instance_optional_arguments_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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
Index: tests/lib/mirrors/new_instance_optional_arguments_test.dart
diff --git a/tests/lib/mirrors/new_instance_optional_arguments_test.dart b/tests/lib/mirrors/new_instance_optional_arguments_test.dart
index 61fe8002a353011c7fbc68d92af28b59c400980e..1c08bbe926d594063037e53bdafb5cab88ce1850 100644
--- a/tests/lib/mirrors/new_instance_optional_arguments_test.dart
+++ b/tests/lib/mirrors/new_instance_optional_arguments_test.dart
@@ -12,15 +12,27 @@ import 'package:expect/expect.dart';
class A {
var req1, opt1, opt2;
A.a0([opt1]) : this.opt1 = opt1;
- A.b0([opt1, opt2]) : this.opt1 = opt1, this.opt2 = opt2;
+ A.b0([opt1, opt2])
+ : this.opt1 = opt1,
+ this.opt2 = opt2;
A.c0([opt1 = 499]) : this.opt1 = opt1;
- A.d0([opt1 = 499, opt2 = 42]) : this.opt1 = opt1, this.opt2 = opt2;
- A.a1(req1, [opt1]) : this.req1 = req1, this.opt1 = opt1;
+ A.d0([opt1 = 499, opt2 = 42])
+ : this.opt1 = opt1,
+ this.opt2 = opt2;
+ A.a1(req1, [opt1])
+ : this.req1 = req1,
+ this.opt1 = opt1;
A.b1(req1, [opt1, opt2])
- : this.req1 = req1, this.opt1 = opt1, this.opt2 = opt2;
- A.c1(req1, [opt1 = 499]) : this.req1 = req1, this.opt1 = opt1;
+ : this.req1 = req1,
+ this.opt1 = opt1,
+ this.opt2 = opt2;
+ A.c1(req1, [opt1 = 499])
+ : this.req1 = req1,
+ this.opt1 = opt1;
A.d1(req1, [opt1 = 499, opt2 = 42])
- : this.req1 = req1, this.opt1 = opt1, this.opt2 = opt2;
+ : this.req1 = req1,
+ this.opt1 = opt1,
+ this.opt2 = opt2;
}
main() {

Powered by Google App Engine
This is Rietveld 408576698