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

Unified Diff: tests/language/field_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/field_test.dart
diff --git a/tests/language/field_test.dart b/tests/language/field_test.dart
index ca417404fd2bc424dd3795acc36476af1d38446a..64704ea516428b0b19fb8a8cd444448b97ce90e5 100644
--- a/tests/language/field_test.dart
+++ b/tests/language/field_test.dart
@@ -25,8 +25,13 @@ class Second extends First {
// TODO: consider removing once http://b/4254120 is fixed.
Second() : super() {}
var c;
- get a { return -12; }
- set b(a) { a.c = 12; }
+ get a {
+ return -12;
+ }
+
+ set b(a) {
+ a.c = 12;
+ }
}
class FieldTest {
@@ -67,7 +72,6 @@ class FieldTest {
}
}
-
main() {
FieldTest.testMain();
}

Powered by Google App Engine
This is Rietveld 408576698