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

Unified Diff: test/regression/other/pub.stmt

Issue 2181743002: Always split collections and argument lists with trailing commas. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 4 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
Index: test/regression/other/pub.stmt
diff --git a/test/regression/other/pub.stmt b/test/regression/other/pub.stmt
index 50b4a86f467e335fd4ea080a36e1cf3f89145480..94fa75083f54c2c7b5db8b25551cd30fe947c197 100644
--- a/test/regression/other/pub.stmt
+++ b/test/regression/other/pub.stmt
@@ -59,7 +59,9 @@
d.dir('packages', [
d.dir('foo', [
d.file('foo.txt', 'foo'),
- d.dir('sub', [d.file('bar.txt', 'bar'),]),
+ d.dir('sub', [
+ d.file('bar.txt', 'bar'),
+ ]),
])
])
]),
@@ -68,7 +70,9 @@
d.dir('packages', [
d.dir('foo', [
d.file('foo.txt', 'foo'),
- d.dir('sub', [d.file('bar.txt', 'bar'),]),
+ d.dir('sub', [
+ d.file('bar.txt', 'bar'),
+ ]),
])
]),
d.dir("sub", [

Powered by Google App Engine
This is Rietveld 408576698