Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Unified Diff: packages/dart_style/test/whitespace/expressions.stmt

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/dart_style/test/whitespace/enums.unit ('k') | packages/dart_style/test/whitespace/functions.unit » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>();
« no previous file with comments | « packages/dart_style/test/whitespace/enums.unit ('k') | packages/dart_style/test/whitespace/functions.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698