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

Unified Diff: tests/language/setter0_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/setter0_test.dart
diff --git a/tests/language/setter0_test.dart b/tests/language/setter0_test.dart
index 8eebd0d146145864bec202bc8bc258532060df4b..5b8f4907809d173e2215a9e781f9678646aa4da6 100644
--- a/tests/language/setter0_test.dart
+++ b/tests/language/setter0_test.dart
@@ -7,14 +7,14 @@
import "package:expect/expect.dart";
class First {
- First(int val) : a_ = val { }
+ First(int val) : a_ = val {}
int a_;
}
class Second extends First {
static int c;
- Second(int val) : super(val) { }
+ Second(int val) : super(val) {}
static void testStaticMethod() {
int i;
@@ -25,6 +25,7 @@ class Second extends First {
void set instance_a(int value) {
a_ = a_ + value;
}
+
int get instance_a {
return a_;
}
@@ -51,7 +52,6 @@ class Setter0Test {
}
}
-
main() {
Setter0Test.testMain();
}

Powered by Google App Engine
This is Rietveld 408576698