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

Unified Diff: pkg/analyzer/test/services/data/cu_tests.data

Issue 153623006: formatter nits (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
« no previous file with comments | « no previous file | pkg/analyzer/test/services/data/stmt_tests.data » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/services/data/cu_tests.data
diff --git a/pkg/analyzer/test/services/data/cu_tests.data b/pkg/analyzer/test/services/data/cu_tests.data
index 9091620fd27e9bf66c3fff86e9fd4f1977094329..a8a4d62e56d186bb576e2c6b2ec69bd97e878225 100644
--- a/pkg/analyzer/test/services/data/cu_tests.data
+++ b/pkg/analyzer/test/services/data/cu_tests.data
@@ -200,4 +200,25 @@ class ContactImpulse {
List<double> tangentImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
ContactImpulse();
-}
+}
+>>> one line call to super is okay
pquitslund 2014/02/07 00:19:13 Fixed!
+class Foo extends Bar {
+Foo():super();
+}
+<<<
+class Foo extends Bar {
+ Foo() : super();
+}
+>>> keep empty methods on a single line
pquitslund 2014/02/07 00:19:13 Fixed!
+void main(){}
+<<<
+void main() { }
+>>> avoid splitting types and names in argument list
+void aVeryLongMethodWithParamsAndOther(List<String> a, List<String> b, List<String> c, List<String> d) {
+ // TODO impl
+}
+<<<
+void aVeryLongMethodWithParamsAndOther(List<String> a, List<String> b,
+ List<String> c, List<String> d) {
+ // TODO impl
+}
« no previous file with comments | « no previous file | pkg/analyzer/test/services/data/stmt_tests.data » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698