| 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 683ab5ae6aada99f224b97bc0519e60a468df2b5..129c637b98a894d349406f162b8c3c203f383f76 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart
|
| @@ -263,6 +263,10 @@ class PrettyPrinter implements Visitor {
|
| {"value" : node.token.slowToString()});
|
| }
|
|
|
| + visitMixinApplication(MixinApplication node) {
|
| + visitNodeWithChildren(node, "MixinApplication");
|
| + }
|
| +
|
| visitModifiers(Modifiers node) {
|
| visitNodeWithChildren(node, "Modifiers");
|
| }
|
| @@ -271,6 +275,10 @@ class PrettyPrinter implements Visitor {
|
| visitNodeWithChildren(node, "NamedArgument");
|
| }
|
|
|
| + visitNamedMixinApplication(NamedMixinApplication node) {
|
| + visitNodeWithChildren(node, "NamedMixinApplication");
|
| + }
|
| +
|
| visitNewExpression(NewExpression node) {
|
| visitNodeWithChildren(node, "NewExpression");
|
| }
|
|
|