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

Side by Side Diff: test/regression/0200/0223.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: Revise. Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « test/io_test.dart ('k') | test/regression/other/pub.stmt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 >>> 1 >>>
2 Foo barBaz() => new Quux({ 2 Foo barBaz() => new Quux({
3 'alpha.beta.gamma': [ 3 'alpha.beta.gamma': [
4 new Zuul({'yarrr': Abracadabra.OPEN_SESAME,}, { 4 new Zuul({'yarrr': Abracadabra.OPEN_SESAME,}, {
5 'toil': {'trouble': {'fireBurn': {'cauldronBubble': EYE_OF_NEWT,}}} 5 'toil': {'trouble': {'fireBurn': {'cauldronBubble': EYE_OF_NEWT,}}}
6 }) 6 })
7 ] 7 ]
8 }); 8 });
9 <<< 9 <<<
10 Foo barBaz() => new Quux({ 10 Foo barBaz() => new Quux({
11 'alpha.beta.gamma': [ 11 'alpha.beta.gamma': [
12 new Zuul({ 12 new Zuul({
13 'yarrr': Abracadabra.OPEN_SESAME, 13 'yarrr': Abracadabra.OPEN_SESAME,
14 }, { 14 }, {
15 'toil': { 15 'toil': {
16 'trouble': { 16 'trouble': {
17 'fireBurn': {'cauldronBubble': EYE_OF_NEWT,} 17 'fireBurn': {
18 'cauldronBubble': EYE_OF_NEWT,
19 }
18 } 20 }
19 } 21 }
20 }) 22 })
21 ] 23 ]
22 }); 24 });
OLDNEW
« no previous file with comments | « test/io_test.dart ('k') | test/regression/other/pub.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698