| Index: lib/compiler/implementation/tree/prettyprint.dart
|
| diff --git a/lib/compiler/implementation/tree/prettyprint.dart b/lib/compiler/implementation/tree/prettyprint.dart
|
| index 2653b0be106264b1fe3c19ff24775178da953814..7ba611d12324982e2346510855c7b4c5c6d533f3 100644
|
| --- a/lib/compiler/implementation/tree/prettyprint.dart
|
| +++ b/lib/compiler/implementation/tree/prettyprint.dart
|
| @@ -345,7 +345,13 @@ class PrettyPrinter implements Visitor {
|
| }
|
|
|
| visitTypeAnnotation(TypeAnnotation node) {
|
| - visitNodeWithChildren(node, "TypeAnnotation");
|
| + openNode("TypeAnnotation", {
|
| + "beginToken" : tokenToStringOrNull(node.getBeginToken()),
|
| + "endToken" : tokenToStringOrNull(node.getEndToken())
|
| + });
|
| + visitWithPrefix(node.typeName, "typeName:");
|
| + visitWithPrefix(node.typeArguments, "typeArguments:");
|
| + closeNode("TypeAnnotation");
|
| }
|
|
|
| visitTypedef(Typedef node) {
|
|
|