blob: dbb9b6849cf43b287e1a43982cdb8a0c42e51661 [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,
};
}