| 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 60f48078f507e1d66fcaeef04fec2e89883d3872..86a7ee6259ce4bf2f96583e49ddf328a7402813d 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/tree/prettyprint.dart
|
| @@ -367,6 +367,12 @@ class PrettyPrinter implements Visitor {
|
| visitNodeWithChildren(node, "SwitchStatement");
|
| }
|
|
|
| + visitLiteralSymbol(LiteralSymbol node) {
|
| + openNode(node, "LiteralSymbol");
|
| + visitChildNode(node.identifiers, "identifiers");
|
| + closeNode();
|
| + }
|
| +
|
| visitThrow(Throw node) {
|
| visitNodeWithChildren(node, "Throw");
|
| }
|
|
|