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

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

Issue 901743002: Enum handling for dart_fmt. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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 class 2 class
3 A 3 A
4 { 4 {
5 } 5 }
6 <<< 6 <<<
7 class A { 7 class A {
8 } 8 }
9 >>> dartbug.com/15876 9 >>> dartbug.com/15876
10 // fisk 10 // fisk
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 >>> 310 >>>
311 main() async { 311 main() async {
312 } 312 }
313 <<< 313 <<<
314 main() async { 314 main() async {
315 } 315 }
316 >>> 316 >>>
317 main() async => 0; 317 main() async => 0;
318 <<< 318 <<<
319 main() async => 0; 319 main() async => 0;
320 >>>
321 enum Foo { BAR, BAZ }
322 <<<
323 enum Foo {
324 BAR, BAZ
325 }
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