blob: 8dc2e61553f078e2e022195d12378472f3af90fc [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(),
];