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

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

Issue 1505983005: Upgrade to analyzer 0.27.0. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: More upgrades. Created 5 years 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
« no previous file with comments | « test/splitting/imports.unit ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 | « test/splitting/imports.unit ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698