Chromium Code Reviews| 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 |
| +} |