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

Side by Side Diff: test/splitting/enums.unit

Issue 844653002: Format enums. Fix #120. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 5 years, 11 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
(Empty)
1 40 columns |
2 >>> multiple lines
3 enum Primate{BONOBO,CHIMP,GORILLA,ORANGUTAN}
4 <<<
5 enum Primate {
6 BONOBO,
7 CHIMP,
8 GORILLA,
9 ORANGUTAN
10 }
11 >>> multiple lines trailing comma
12 enum Primate{BONOBO,CHIMP,GORILLA,ORANGUTAN,}
13 <<<
14 enum Primate {
15 BONOBO,
16 CHIMP,
17 GORILLA,
18 ORANGUTAN,
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698