blob: e8add966ec0cf27447ab14ac017a4000a6db36a1 [file] [log] [blame]
>>>
return [
for (final x in exampleList)
if (conditionA)
ItemConstructorA()
// Sample multi-line comment
// which broke the formatter
else if (conditionB)
ItemConstructorB()
else
ItemConstructorC()
];
<<<
return [
for (final x in exampleList)
if (conditionA)
ItemConstructorA()
// Sample multi-line comment
// which broke the formatter
else if (conditionB)
ItemConstructorB()
else
ItemConstructorC()
];