| Index: lib/src/source_visitor.dart
|
| diff --git a/lib/src/source_visitor.dart b/lib/src/source_visitor.dart
|
| index a59ff5e1d968a17684588025df60868ed6e2beb5..524db2ecf8fe427478953bda1181ddf9019ffd19 100644
|
| --- a/lib/src/source_visitor.dart
|
| +++ b/lib/src/source_visitor.dart
|
| @@ -647,11 +647,9 @@ class SourceVisitor implements AstVisitor {
|
| visit(node.name);
|
| space();
|
|
|
| - _writeBody(node.leftBracket, node.rightBracket,
|
| - space: true,
|
| - body: () {
|
| - visitCommaSeparatedNodes(node.constants, between: split);
|
| - });
|
| + _writeBody(node.leftBracket, node.rightBracket, space: true, body: () {
|
| + visitCommaSeparatedNodes(node.constants, between: split);
|
| + });
|
| }
|
|
|
| visitExportDirective(ExportDirective node) {
|
|
|