| Index: sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart b/sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart
|
| index c7c1a328b893b4572040d202bc9e6586e4def40f..56aef27c33a17a5db8010e6757b532831537592a 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart
|
| @@ -173,6 +173,10 @@ class PrettyPrinter implements Visitor {
|
| visitNodeWithChildren(node, "EmptyStatement");
|
| }
|
|
|
| + visitEnum(Enum node) {
|
| + visitNodeWithChildren(node, "Enum");
|
| + }
|
| +
|
| visitExpressionStatement(ExpressionStatement node) {
|
| visitNodeWithChildren(node, "ExpressionStatement");
|
| }
|
|
|