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

Side by Side Diff: packages/dart_style/test/splitting/lists.stmt

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 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
OLDNEW
1 40 columns | 1 40 columns |
2 >>> empty list 2 >>> empty list
3 []; 3 [];
4 <<< 4 <<<
5 []; 5 [];
6 >>> exactly 40 characters 6 >>> exactly 40 characters
7 [first, second, third, fourth, seventh]; 7 [first, second, third, fourth, seventh];
8 <<< 8 <<<
9 [first, second, third, fourth, seventh]; 9 [first, second, third, fourth, seventh];
10 >>> 10 >>>
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 () { 66 () {
67 "fn"; 67 "fn";
68 }, 68 },
69 third, 69 third,
70 fourth 70 fourth
71 ]; 71 ];
72 >>> spaces between items 72 >>> spaces between items
73 [1,2,3,4]; 73 [1,2,3,4];
74 <<< 74 <<<
75 [1, 2, 3, 4]; 75 [1, 2, 3, 4];
76 >>> dangling comma 76 >>> trailing comma forces split
77 [1 , ]; 77 [1 , ];
78 <<< 78 <<<
79 [1,]; 79 [
80 >>> dangling comma multiline 80 1,
81 ];
82 >>> trailing comma multiline
81 [first, second, third, fourth, fifth, sixth , ]; 83 [first, second, third, fourth, fifth, sixth , ];
82 <<< 84 <<<
83 [ 85 [
84 first, 86 first,
85 second, 87 second,
86 third, 88 third,
87 fourth, 89 fourth,
88 fifth, 90 fifth,
89 sixth, 91 sixth,
90 ]; 92 ];
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 ]; 161 ];
160 <<< 162 <<<
161 [ 163 [
162 element, 164 element,
163 165
164 // comment 166 // comment
165 element, 167 element,
166 168
167 element 169 element
168 ]; 170 ];
OLDNEW
« no previous file with comments | « packages/dart_style/test/splitting/imports.unit ('k') | packages/dart_style/test/splitting/maps.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698