| 40 columns | | |
| >>> Line comment in combinator list. | |
| import 'foo.dart' hide First, // | |
| Second; | |
| <<< | |
| import 'foo.dart' | |
| hide | |
| First, // | |
| Second; | |
| >>> Don't split `==` because of comment before left operand. | |
| import 'uri.dart' if ( | |
| // comment | |
| config == 'value') 'c'; | |
| <<< | |
| ### The indentation is odd here because it's an odd place for a comment. | |
| import 'uri.dart' | |
| if ( | |
| // comment | |
| config == 'value') 'c'; |