blob: 6591e6c0e1f37ff7ac208abcf945b6abdb07b044 [file] [log] [blame]
>>> https://github.com/dart-lang/dart_style/issues/14
class A {
final Map x;
A() : x = {
// comment
'foo': 1,
'bar': 2,
};
}
<<<
class A {
final Map x;
A() : x = {
// comment
'foo': 1,
'bar': 2,
};
}