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

Side by Side Diff: test/regression/0200/0243.stmt

Issue 1493553002: Smarter splitting around named collection arguments. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 5 years 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/regression/0100/0162.stmt ('k') | test/regression/0300/0394.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 >>> (indent 4) 1 >>> (indent 4)
2 return new Container( 2 return new Container(
3 key: 'ChatApp', 3 key: 'ChatApp',
4 children: [ 4 children: [
5 new Container( 5 new Container(
6 key: 'Content', 6 key: 'Content',
7 style: _content_style, 7 style: _content_style,
8 children: appChildren)]); 8 children: appChildren)]);
9 <<< 9 <<<
10 return new Container( 10 return new Container(key: 'ChatApp', children: [
11 key: 'ChatApp', 11 new Container(
12 children: [ 12 key: 'Content', style: _content_style, children: appChildren)
13 new Container( 13 ]);
14 key: 'Content', style: _content_style, children: appChildren)
15 ]);
16 >>> (indent 10) 14 >>> (indent 10)
17 return new Container( 15 return new Container(
18 key: 'ChatApp', 16 key: 'ChatApp',
19 children: [ 17 children: [
20 new Container( 18 new Container(
21 key: 'Content', 19 key: 'Content',
22 style: _content_style, 20 style: _content_style,
23 children: appChildren)]); 21 children: appChildren)]);
24 <<< 22 <<<
25 return new Container( 23 return new Container(key: 'ChatApp', children: [
26 key: 'ChatApp', 24 new Container(
27 children: [ 25 key: 'Content', style: _content_style, children: appChildren)
28 new Container( 26 ]);
29 key: 'Content',
30 style: _content_style,
31 children: appChildren)
32 ]);
OLDNEW
« no previous file with comments | « test/regression/0100/0162.stmt ('k') | test/regression/0300/0394.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698