| Index: dart/lib/compiler/implementation/tree/unparser.dart
|
| diff --git a/dart/lib/compiler/implementation/tree/unparser.dart b/dart/lib/compiler/implementation/tree/unparser.dart
|
| index c9f166582f0a5c676b5b629158333224195c8d32..c246dc7e6bfc7eb3094067502fb8950c8b4bc811 100644
|
| --- a/dart/lib/compiler/implementation/tree/unparser.dart
|
| +++ b/dart/lib/compiler/implementation/tree/unparser.dart
|
| @@ -518,6 +518,7 @@ class Unparser implements Visitor {
|
| visit(node.prefix);
|
| }
|
| if (node.combinators != null) {
|
| + sb.add(' ');
|
| visit(node.combinators);
|
| }
|
| add(node.getEndToken().value);
|
| @@ -527,6 +528,7 @@ class Unparser implements Visitor {
|
| addToken(node.exportKeyword);
|
| visit(node.uri);
|
| if (node.combinators != null) {
|
| + sb.add(' ');
|
| visit(node.combinators);
|
| }
|
| add(node.getEndToken().value);
|
| @@ -544,4 +546,9 @@ class Unparser implements Visitor {
|
| visit(node.name);
|
| add(node.getEndToken().value);
|
| }
|
| +
|
| + visitCombinator(Combinator node) {
|
| + addToken(node.keywordToken);
|
| + visit(node.identifiers);
|
| + }
|
| }
|
|
|