| OLD | NEW |
| 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 Loading... |
| 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'; |
| OLD | NEW |