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

Unified Diff: tests/language_strong/rewrite_variable_initializer_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/language_strong/rewrite_variable_initializer_test.dart
diff --git a/tests/language_strong/rewrite_variable_initializer_test.dart b/tests/language_strong/rewrite_variable_initializer_test.dart
index 7909ead2900d6dbe11a8df4651572a07f2f19111..75de2d06ffe883bf10e03846f81f932c90f6e2e0 100644
--- a/tests/language_strong/rewrite_variable_initializer_test.dart
+++ b/tests/language_strong/rewrite_variable_initializer_test.dart
@@ -5,36 +5,36 @@
import "package:expect/expect.dart";
class Foo {
- var field = 0;
+ var field = 0;
}
-bar(x,y) {
- return x * 100 + y;
+bar(x, y) {
+ return x * 100 + y;
}
foo(z) {
- var x = 0, y = x;
- if (z > 0) {
- x = 10;
- }
- if (z > 10) {
- y = 20;
- }
- return bar(x,y);
+ var x = 0, y = x;
+ if (z > 0) {
+ x = 10;
+ }
+ if (z > 10) {
+ y = 20;
+ }
+ return bar(x, y);
}
baz(z) {
- var f = new Foo()
- ..field = 10
- ..field = z;
- return f;
+ var f = new Foo()
+ ..field = 10
+ ..field = z;
+ return f;
}
main() {
- Expect.equals(0, foo(0));
- Expect.equals(1000, foo(5));
- Expect.equals(1020, foo(15));
+ Expect.equals(0, foo(0));
+ Expect.equals(1000, foo(5));
+ Expect.equals(1020, foo(15));
- Expect.equals(20, baz(20).field);
- Expect.equals(30, baz(30).field);
+ Expect.equals(20, baz(20).field);
+ Expect.equals(30, baz(30).field);
}

Powered by Google App Engine
This is Rietveld 408576698