Chromium Code Reviews

Side by Side Diff: packages/dart_style/test/comments/enums.unit

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 40 columns |
2 >>> line comments
3 enum A {
4 // comment
5 B,
6
7 // comment
8 C
9
10 // comment
11 }
12 <<<
13 enum A {
14 // comment
15 B,
16
17 // comment
18 C
19
20 // comment
21 }
22 >>> block comments
23 enum A {
24 /* comment */
25 B,
26
27 /* comment */
28 C
29
30 /* comment */
31 }
32 <<<
33 enum A {
34 /* comment */
35 B,
36
37 /* comment */
38 C
39
40 /* comment */
41 }
42 >>> remove blank line before beginning of body
43 enum A {
44
45
46
47 // comment
48 B
49 }
50 <<<
51 enum A {
52 // comment
53 B
54 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/comments/classes.unit ('k') | packages/dart_style/test/comments/expressions.stmt » ('j') | no next file with comments »

Powered by Google App Engine