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

Side by Side Diff: packages/dart_style/test/whitespace/directives.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 >>> require at least one newline between directives
3 import 'a.dart';import 'b.dart';export 'c.dart';
4 <<<
5 import 'a.dart';
6 import 'b.dart';
7 export 'c.dart';
8 >>> allow an extra newline between directives
9 import 'a.dart';
10
11 import 'b.dart';
12 export 'c.dart';
13 <<<
14 import 'a.dart';
15
16 import 'b.dart';
17 export 'c.dart';
18 >>> collapse any other newlines
19 import 'a.dart';
20
21
22 import 'b.dart';
23
24
25
26
27 export 'c.dart';
28 <<<
29 import 'a.dart';
30
31 import 'b.dart';
32
33 export 'c.dart';
34 >>> deferred
35 import 'a.dart'
36 deferred
37 as
38 a;
39 <<<
40 import 'a.dart' deferred as a;
41 >>> part of
42 part of foo;
43 <<<
44 part of foo;
45 >>> long part of does not wrap
46 part of some_very_long_library_name_that_wraps;
47 <<<
48 part of some_very_long_library_name_that_wraps;
49 >>> no spaces between library identifiers
50 library a . b . c;
51 <<<
52 library a.b.c;
OLDNEW
« no previous file with comments | « packages/dart_style/test/whitespace/constructors.unit ('k') | packages/dart_style/test/whitespace/do.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698