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

Side by Side Diff: packages/dart_style/test/comments/statements.stmt

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. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 40 columns |
2 >>> inline after "var"
3 var /* int */ x;
4 <<<
5 var /* int */ x;
6 >>> trailing line comment
7 var x; // x
8 <<<
9 var x; // x
10 >>> multiple variable declaration list
11 var x /* X */, y;
12 <<<
13 var x /* X */, y;
14 >>> continue with line comment
15 while (true) {
16 continue // comment
17 ;
18 }
19 <<<
20 while (true) {
21 continue // comment
22 ;
23 }
24 >>> continue with wrapped block comment
25 while (true) {
26 continue /* a long comment that does not wrap */;
27 }
28 <<<
29 while (true) {
30 continue /* a long comment that does not wrap */;
31 }
32 >>> do with line comment
33 do // comment
34 {;} while (true);
35 <<<
36 do // comment
37 {
38 ;
39 } while (true);
40 >>> always place newline after multi-line block comment
41 /*
42 */ var i = value;
43 <<<
44 /*
45 */
46 var i = value;
47 >>> remove blank line before beginning of block
48 while (true) {
49
50
51
52 // comment
53 }
54 <<<
55 while (true) {
56 // comment
57 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/comments/mixed.unit ('k') | packages/dart_style/test/comments/top_level.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698