| Index: packages/dart_style/test/regression/0000/0013.unit
|
| diff --git a/packages/dart_style/test/regression/0000/0013.unit b/packages/dart_style/test/regression/0000/0013.unit
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7c3b7ee7bb8ee524f7539c9ce4fad5ce509b5589
|
| --- /dev/null
|
| +++ b/packages/dart_style/test/regression/0000/0013.unit
|
| @@ -0,0 +1,26 @@
|
| +40 columns |
|
| +>>> no trailing whitespace before initializer comment
|
| +class A {
|
| + A()
|
| + // comment
|
| + : field = value;
|
| +}
|
| +<<<
|
| +class A {
|
| + A()
|
| + // comment
|
| + : field = value;
|
| +}
|
| +>>> no trailing whitespace before initializer comment when params wrap
|
| +class A {
|
| + A(some, very, long, parameter, list, that, wraps)
|
| + // comment
|
| + : field = value;
|
| +}
|
| +<<<
|
| +class A {
|
| + A(some, very, long, parameter, list,
|
| + that, wraps)
|
| + // comment
|
| + : field = value;
|
| +}
|
|
|