| Index: packages/dart_style/test/splitting/members.unit
|
| diff --git a/packages/dart_style/test/splitting/members.unit b/packages/dart_style/test/splitting/members.unit
|
| index cb59d750c158d4ba2e4627fe5bc66964eaf02ad6..ebca8c5b300394f130e26ce297a1d107bc8694c4 100644
|
| --- a/packages/dart_style/test/splitting/members.unit
|
| +++ b/packages/dart_style/test/splitting/members.unit
|
| @@ -25,4 +25,15 @@ class Foo {
|
| class Foo {
|
| VeryLongTypeAnnotation
|
| set veryLongSetter(v) {}
|
| -}
|
| +}
|
| +>>> do not split after "covariant" in field (at least for now) (skip: published version of analyzer doesn't support 'covariant yet')
|
| +class Foo {
|
| + covariant var soMuchSoVeryLongFieldNameHere;
|
| + covariant VeryLongTypeAnnotation field;
|
| +}
|
| +<<<
|
| +class Foo {
|
| + covariant var soMuchSoVeryLongFieldNameHere;
|
| + covariant VeryLongTypeAnnotation
|
| + field;
|
| +}
|
|
|