| 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 6dec008600d2f9e29b4e8156a92643ddd6243a8e..0e092d5fa9beb42ce01b4103171adb6315c9dc35 100644
|
| --- a/dart/lib/compiler/implementation/tree/unparser.dart
|
| +++ b/dart/lib/compiler/implementation/tree/unparser.dart
|
| @@ -206,11 +206,7 @@ class Unparser implements Visitor {
|
|
|
| visitLiteralList(LiteralList node) {
|
| addToken(node.constKeyword);
|
| - if (node.type !== null) {
|
| - sb.add('<');
|
| - visit(node.type);
|
| - sb.add('>');
|
| - }
|
| + visit(node.typeArguments);
|
| visit(node.elements);
|
| }
|
|
|
|
|