| Index: packages/dart_style/test/whitespace/expressions.stmt
|
| diff --git a/packages/dart_style/test/whitespace/expressions.stmt b/packages/dart_style/test/whitespace/expressions.stmt
|
| index ef31265bfa4b8b71095dd3a19662086244bc4f2e..ede2fe7bf4fbd1e097cf8616ee9e424dd84107ea 100644
|
| --- a/packages/dart_style/test/whitespace/expressions.stmt
|
| +++ b/packages/dart_style/test/whitespace/expressions.stmt
|
| @@ -114,4 +114,28 @@ receiver?.method()?.getter;
|
| >>> null coalescing self assignment
|
| variableName??=argument;
|
| <<<
|
| -variableName ??= argument;
|
| +variableName ??= argument;
|
| +>>> trailing comma in single argument list
|
| +function(argument , );
|
| +<<<
|
| +function(
|
| + argument,
|
| +);
|
| +>>> trailing comma in argument list
|
| +function(argument,argument , );
|
| +<<<
|
| +function(
|
| + argument,
|
| + argument,
|
| +);
|
| +>>> trailing comma in named argument list
|
| +function(named: arg,another:arg, );
|
| +<<<
|
| +function(
|
| + named: arg,
|
| + another: arg,
|
| +);
|
| +>>> generic method call
|
| +method <int,String , bool> ();
|
| +<<<
|
| +method<int, String, bool>();
|
|
|