| Index: pkg/analyzer/test/services/data/cu_tests.data
|
| ===================================================================
|
| --- pkg/analyzer/test/services/data/cu_tests.data (revision 34890)
|
| +++ pkg/analyzer/test/services/data/cu_tests.data (working copy)
|
| @@ -216,12 +216,12 @@
|
| >>> Single initializers can be on one line
|
| class Foo extends Bar {
|
| final int b;
|
| - Foo(int a, this.b): super(a);
|
| + Foo(int a, this.b) : super(a);
|
| }
|
| <<<
|
| class Foo extends Bar {
|
| final int b;
|
| - Foo(int a, this.b): super(a);
|
| + Foo(int a, this.b) : super(a);
|
| }
|
| >>> (or not)
|
| class Foo extends Bar {
|
|
|