| Index: sdk/lib/_internal/compiler/implementation/dart_backend/dart_tree_printer.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/dart_tree_printer.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/dart_tree_printer.dart
|
| index 3544670a3b6e1ea770721dc674178a0845eff8f6..95faa83dfb7db9e283471f3e86cd712f4d0156db 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/dart_backend/dart_tree_printer.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/dart_backend/dart_tree_printer.dart
|
| @@ -498,6 +498,9 @@ class TreePrinter {
|
| } else if (exp is This) {
|
| precedence = CALLEE;
|
| result = makeIdentifier('this');
|
| + } else if (exp is Super) {
|
| + precedence = CALLEE;
|
| + result = makeIdentifier('super');
|
| } else if (exp is Throw) {
|
| precedence = EXPRESSION; // ???
|
| result = new tree.Throw(
|
|
|