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

Unified Diff: pkg/front_end/testcases/rasta/issue_000070.dart

Issue 2820323005: Run formatter on a few frontend and kernel files that hadn't been formatted. (Closed)
Patch Set: Run formatter on a few frontend and kernel files that hadn't been formatted. 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: 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;
« no previous file with comments | « pkg/front_end/testcases/rasta/issue_000069.dart ('k') | pkg/front_end/testcases/rasta/super_initializer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698