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

Side by Side Diff: packages/dart_style/test/whitespace/directives.unit

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 4 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
1 40 columns | 1 40 columns |
2 >>> require at least one newline between directives 2 >>> require at least one newline between directives
3 import 'a.dart';import 'b.dart';export 'c.dart'; 3 import 'a.dart';import 'b.dart';export 'c.dart';
4 <<< 4 <<<
5 import 'a.dart'; 5 import 'a.dart';
6 import 'b.dart'; 6 import 'b.dart';
7 export 'c.dart'; 7 export 'c.dart';
8 >>> allow an extra newline between directives 8 >>> allow an extra newline between directives
9 import 'a.dart'; 9 import 'a.dart';
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 part of foo; 42 part of foo;
43 <<< 43 <<<
44 part of foo; 44 part of foo;
45 >>> long part of does not wrap 45 >>> long part of does not wrap
46 part of some_very_long_library_name_that_wraps; 46 part of some_very_long_library_name_that_wraps;
47 <<< 47 <<<
48 part of some_very_long_library_name_that_wraps; 48 part of some_very_long_library_name_that_wraps;
49 >>> no spaces between library identifiers 49 >>> no spaces between library identifiers
50 library a . b . c; 50 library a . b . c;
51 <<< 51 <<<
52 library a.b.c; 52 library a.b.c;
53 >>> configuration
54 import'a'if(b . c . d)'e';
55 <<<
56 import 'a' if (b.c.d) 'e';
57 >>> configuration
58 export'a'if(b . c=='d' )'e';
59 <<<
60 export 'a' if (b.c == 'd') 'e';
OLDNEW
« no previous file with comments | « packages/dart_style/test/whitespace/classes.unit ('k') | packages/dart_style/test/whitespace/enums.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698