Index: pkg/front_end/testcases/rasta/issue_000070.dart |
diff --git a/pkg/front_end/testcases/rasta/issue_000070.dart b/pkg/front_end/testcases/rasta/issue_000070.dart |
index cefc9de7238a3b8eb16668a3d673216c022db081..95a5b07407d936d77c9bf38093bdec10341e9898 100644 |
--- a/pkg/front_end/testcases/rasta/issue_000070.dart |
+++ b/pkg/front_end/testcases/rasta/issue_000070.dart |
@@ -12,7 +12,7 @@ class A<N, S, U> { |
Expect.isTrue(s is S); |
} |
- A.empty() : field = null{} |
+ A.empty() : field = null {} |
factory A.f(S s) { |
Expect.isTrue(s is S); |
@@ -25,19 +25,17 @@ class A<N, S, U> { |
return field; |
} |
- void set setter(S s){} |
+ void set setter(S s) {} |
} |
-abstract class J<Aa, B>{} |
- |
-abstract class I<H, C, K> extends J<C, K> |
-{ } |
+abstract class J<Aa, B> {} |
+abstract class I<H, C, K> extends J<C, K> {} |
main() { |
new A<num, double, List>(1, 2.0); |
A a = new A<int, int, int>.f(1); |
- const A<int, int, List>.c(const[], 1); |
+ const A<int, int, List>.c(const [], 1); |
var z = a.getter; |
a.setter = 1; |