blob: 85e2157927469c124d1c565e9be5813a9d78b98a [file] [log] [blame]
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';