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

Side by Side Diff: packages/dart_style/test/whitespace/script.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. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 40 columns |
2 >>> one line between script and library
3 #!script
4 library foo;
5 <<<
6 #!script
7 library foo;
8 >>> multiple lines between script and library
9 #!script
10
11
12
13 library foo;
14 <<<
15 #!script
16
17 library foo;
18 >>> one line between script and import
19 #!script
20 import 'foo';
21 <<<
22 #!script
23 import 'foo';
24 >>> multiple lines between script and import
25 #!script
26
27
28
29 import 'foo';
30 <<<
31 #!script
32
33 import 'foo';
34 >>> one line between script and line comment
35 #!script
36 // comment
37 <<<
38 #!script
39 // comment
40 >>> multiple lines between script and line comment
41 #!script
42
43
44
45 // comment
46 <<<
47 #!script
48
49 // comment
50 >>> one line between script and block comment
51 #!script
52 /* comment */
53 <<<
54 #!script
55 /* comment */
56 >>> multiple lines between script and block comment
57 #!script
58
59
60
61 /* comment */
62 <<<
63 #!script
64
65 /* comment */
OLDNEW
« no previous file with comments | « packages/dart_style/test/whitespace/methods.unit ('k') | packages/dart_style/test/whitespace/switch.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698