| 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 93a3212e0a0d4c00a9a2469b13f476b39affe051..c8bf5e087d41a75da24bcdd20ee8c2a70a1ff0f4 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart
|
| @@ -172,6 +172,10 @@ class PrettyPrinter extends Indentation implements Visitor {
|
| visitNodeWithChildren(node, "EmptyStatement");
|
| }
|
|
|
| + visitEnum(Enum node) {
|
| + visitNodeWithChildren(node, "Enum");
|
| + }
|
| +
|
| visitExpressionStatement(ExpressionStatement node) {
|
| visitNodeWithChildren(node, "ExpressionStatement");
|
| }
|
|
|