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

Side by Side Diff: pkg/analyzer/test/services/data/stmt_tests.data

Issue 149793003: Empty map formatting fix (dartbug.com/16382). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « pkg/analyzer/lib/src/services/formatter_impl.dart ('k') | no next file » | 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 if (x && 2 if (x &&
3 y) { 3 y) {
4 print('!'); 4 print('!');
5 } 5 }
6 <<< 6 <<<
7 if (x && y) { 7 if (x && y) {
8 print('!'); 8 print('!');
9 } 9 }
10 >>> 10 >>>
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 assert(false); 52 assert(false);
53 >>> dartbug.com/16384 53 >>> dartbug.com/16384
54 fish() => []..add(1)..add(2); 54 fish() => []..add(1)..add(2);
55 <<< 55 <<<
56 fish() => [] 56 fish() => []
57 ..add(1) 57 ..add(1)
58 ..add(2); 58 ..add(2);
59 >>> 59 >>>
60 fish() => []..add(1); 60 fish() => []..add(1);
61 <<< 61 <<<
62 fish() => []..add(1); 62 fish() => []..add(1);
63 >>> dartbug.com/16382
64 var m = { };
65 <<<
66 var m = {};
67 >>>
68 var m = {};
69 <<<
70 var m = {};
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/services/formatter_impl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698